Color :: Color - Constructor
Implementation overview
- Copy Constructor
Color :: Color ( cColor ) - Default constructor
Color :: Color (  ) - Value constructor
Color :: Color ( iRed, iGreen, iBlue )
Implementation details
-
Copy Constructor
Color  :: Color ( odabagui::Color &cColor )
- cColor
- Color
Color is a resource object type, which can be used for defining the color for different resource objects. Color is passed as red/green/blue component with values between 0 and 255 for each color component (16 million colors).
to list
- cColor
- Color
- to list
-
Value constructor
Color  :: Color ( int32 iRed, int32 iGreen, int32 iBlue )
- iRed
- Red value
The red value is an integer value between 0 and 255.
- iGreen
- Green value
The green value is an integer value between 0 and 255.
- iBlue
- Blue component
The blue value is an integer value between 0 and 255.
to list
- iRed
- Red value