|
| vtkRect () |
|
| vtkRect (const T &x, const T &y, const T &width, const T &height) |
|
| vtkRect (const T *init) |
|
void | SetX (const T &x) |
|
const T & | GetX () const |
|
void | SetY (const T &y) |
|
const T & | GetY () const |
|
void | SetWidth (const T &width) |
|
const T & | GetWidth () const |
|
void | SetHeight (const T &height) |
|
|
void | Set (const T &x, const T &y, const T &width, const T &height) |
|
|
const T & | GetHeight () const |
|
| vtkVector () |
|
| vtkVector (const T &scalar) |
|
| vtkVector (const T *init) |
|
T | SquaredNorm () const |
|
double | Norm () const |
|
double | Normalize () |
|
vtkVector< T, Size > | Normalized () const |
|
T | Dot (const vtkVector< T, Size > &other) const |
|
vtkVector< TR, Size > | Cast () const |
|
int | GetSize () const |
|
| vtkTuple () |
|
| vtkTuple (const T &scalar) |
|
| vtkTuple (const T *init) |
|
T * | GetData () |
|
const T * | GetData () const |
|
T & | operator[] (int i) |
|
const T & | operator[] (int i) const |
|
T | operator() (int i) const |
|
bool | Compare (const vtkTuple< T, Size > &other, const T &tol) const |
|
template<typename TR > |
vtkTuple< TR, Size > | Cast () const |
|
template<typename T>
class vtkRect< T >
templated base type for storage of 2D rectangles.
This class is a templated data type for storing and manipulating rectangles. The memory layout is a contiguous array of the specified type, such that a float[4] can be cast to a vtkRectf and manipulated. Also a float[12] could be cast and used as a vtkRectf[3].
Definition at line 32 of file vtkRect.h.