Builds an RGB integer triplet (#RRGGBB) from Red, Green and Blue integer components.
public static int Make( int r, int g, int b );
r System.Int32. Red component between 0 and 255. g System.Int32. Green component between 0 and 255. b System.Int32. Blue component between 0 and 255.
System.Int32. The resulting RGB integer triplet.
As an example, RGB.Make(255,1,2) returns the integer 0xFF0102.
© 2004-2005 GlobFX Technologies. All rights reserved. |