Here you can find the source of toFloat(int colorComponent)
public static float toFloat(int colorComponent)
//package com.java2s; public class Main { public static float toFloat(int colorComponent) { return colorComponent / 255.0f; }/* ww w . j a v a 2s .c o m*/ }