Method HSBtoRGB(float hue, float saturation, float brightness)
Return type: int
Member of: java.awt.Color
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 biG.setColor(new Color(Color.HSBtoRGB(h, s, 0.77f)));
2 return new Color(Color.HSBtoRGB(h,s,v));
3 setcolor( new Color( Color.HSBtoRGB( hue, saturation, brightness ) ) );
4 pixels[i] = Color.HSBtoRGB(hue, saturation, brightness);
5 pixels[i] = Color.HSBtoRGB(hsb[0], hsb[1], bvalue);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.