| 
|   | vtkColor4f ()=default | 
|   | 
|   | vtkColor4f (float scalar) | 
|   | 
|   | vtkColor4f (const float *init) | 
|   | 
|   | vtkColor4f (float r, float g, float b, float a=1.0) | 
|   | 
|   | vtkColor4 ()=default | 
|   | 
|   | vtkColor4 (const float &scalar) | 
|   | 
|   | vtkColor4 (const float *init) | 
|   | 
|   | vtkColor4 (const float &red, const float &green, const float &blue, const float &alpha) | 
|   | 
| void  | SetRed (const float &red) | 
|   | Set the red component of the color, i.e.  
  | 
|   | 
| const float &  | GetRed () const | 
|   | Get the red component of the color, i.e.  
  | 
|   | 
| void  | SetGreen (const float &green) | 
|   | Set the green component of the color, i.e.  
  | 
|   | 
| const float &  | GetGreen () const | 
|   | Get the green component of the color, i.e.  
  | 
|   | 
| void  | SetBlue (const float &blue) | 
|   | Set the blue component of the color, i.e.  
  | 
|   | 
| const float &  | GetBlue () const | 
|   | Get the blue component of the color, i.e.  
  | 
|   | 
| void  | SetAlpha (const float &alpha) | 
|   | Set the alpha component of the color, i.e.  
  | 
|   | 
| const float &  | GetAlpha () const | 
|   | Get the alpha component of the color, i.e.  
  | 
|   | 
| void  | Set (const float &red, const float &green, const float &blue) | 
|   | Set the red, green and blue components of the color.  
  | 
|   | 
| void  | Set (const float &red, const float &green, const float &blue, const float &alpha) | 
|   | Set the red, green, blue and alpha components of the color.  
  | 
|   | 
|   | vtkTuple ()=default | 
|   | The default constructor does not initialize values.  
  | 
|   | 
|   | vtkTuple (const T &scalar) | 
|   | Initialize all of the tuple's elements with the supplied scalar.  
  | 
|   | 
|   | vtkTuple (const T *init) | 
|   | Initialize the tuple's elements with the elements of the supplied array.  
  | 
|   | 
|   | vtkTuple (const std::array< T, Size > &values) | 
|   | Initialize the tuple's elements using a std::array for matching type and size.  
  | 
|   | 
| int  | GetSize () const | 
|   | Get the size of the tuple.  
  | 
|   | 
| T *  | GetData () | 
|   | Get a pointer to the underlying data of the tuple.  
  | 
|   | 
| const T *  | GetData () const | 
|   | 
| T &  | operator[] (int i) | 
|   | Get a reference to the underlying data element of the tuple.  
  | 
|   | 
| const T &  | operator[] (int i) const | 
|   | 
| T  | operator() (int i) const | 
|   | Get the value of the tuple at the index specified.  
  | 
|   | 
| bool  | Compare (const vtkTuple< T, Size > &other, const T &tol) const | 
|   | Equality operator with a tolerance to allow fuzzy comparisons.  
  | 
|   | 
| template<typename TR >  | 
| vtkTuple< TR, Size >  | Cast () const | 
|   | Cast the tuple to the specified type, returning the result.  
  | 
|   | 
Definition at line 294 of file vtkColor.h.