This structure defines a color for vector drawing.
Declaration:
Copy Code | |
---|---|
typedef struct tag_IGVectColor { unsigned char m_r; unsigned char m_g; unsigned char m_b; unsigned char m_a; } IGVectColor |
Members:
Name | Type | Description |
m_r | unsigned char | The red component. |
m_g | unsigned char | The green component. |
m_b | unsigned char | The blue component. |
m_a | unsigned char | The alpha component. |