#include <Inventor/fields/SoMFColor.h>
Inheritance diagram for SoMFColor::
Public Methods | |
void | setValues (const int start, const int num, const float rgb[][3]) |
void | setHSVValues (const int start, const int num, const float hsv[][3]) |
void | setValue (const SbVec3f &vec) |
void | setValue (const float r, const float g, const float b) |
void | setValue (const float rgb[3]) |
void | setHSVValue (const float h, const float s, const float v) |
void | setHSVValue (const float hsv[3]) |
void | set1Value (const int idx, const SbVec3f &vec) |
void | set1Value (const int idx, const float r, const float g, const float b) |
void | set1Value (const int idx, const float rgb[3]) |
void | set1HSVValue (const int idx, const float h, const float s, const float v) |
void | set1HSVValue (const int idx, const float hsv[3]) |
Static Public Methods | |
void | initClass (void) |
This field is used where nodes, engines or other field containers needs to store multiple color values (i.e. "Red Green Blue" triplets).
|
Internal method called upon initialization of the library (from SoDB::init()) to set up the type system. Reimplemented from SoMField. |
|
Set num RGB color values, starting at index start. |
|
Set num HSV color values, starting at index start. |
|
Set the color array to a single value. vec is interpreted as a three element vector with the red, green and blue components, respectively. |
|
Set the color array to a single value. r, g and b are the red, green and blue components, respectively. |
|
Set the color array to a single value. rgb is a three element vector with the red, green and blue components, respectively. |
|
Set the color array to a single value. h, s and v are the hue, saturation and value components, respectively. |
|
Set the color array to a single value. hsv is a three element vector with the hue, saturation and value components, respectively. |
|
Set the color at idx. vec is interpreted as a three element vector with the red, green and blue components, respectively. |
|
Set the color at idx. r, g and b is the red, green and blue components, respectively. |
|
Set the color at idx. rgb is interpreted as a three element vector with the red, green and blue components, respectively. |
|
Set the color at idx. h, s and v is the hue, saturation and value components, respectively. |
|
Set the color at idx. hsv is a three element vector with the hue, saturation and value components, respectively. |