|
| vtkVector4d ()=default |
| vtkVector4d (double x, double y, double z, double w) |
| vtkVectorDerivedMacro (vtkVector4d, double, 4) |
| vtkVector4 ()=default |
| vtkVector4 (const double &scalar) |
| vtkVector4 (const double *init) |
| vtkVector4 (const double &x, const double &y, const double &z, const double &w) |
void | SetX (const double &x) |
| Set the x component of the vector, i.e.
|
const double & | GetX () const |
| Get the x component of the vector, i.e.
|
void | SetY (const double &y) |
| Set the y component of the vector, i.e.
|
const double & | GetY () const |
| Get the y component of the vector, i.e.
|
void | SetZ (const double &z) |
| Set the z component of the vector, i.e.
|
const double & | GetZ () const |
| Get the z component of the vector, i.e.
|
void | SetW (const double &w) |
| Set the w component of the vector, i.e.
|
const double & | GetW () const |
| Get the w component of the vector, i.e.
|
void | Set (const double &x, const double &y, const double &z, const double &w) |
| Set the x, y, z and w components of a 3D vector in homogeneous coordinates.
|
| vtkVector ()=default |
double | Norm () const |
| Get the norm of the vector, i.e.
|
double | SquaredNorm () const |
| Get the squared norm of the vector.
|
double | Normalize () |
| Normalize the vector in place.
|
vtkVector< double, Size > | Normalized () const |
| Return the normalized form of this vector.
|
double | Dot (const vtkVector< double, Size > &other) const |
| The dot product of this and the supplied vector.
|
vtkVector< TR, Size > | Cast () const |
| Cast the vector to the specified type, returning the result.
|
| vtkTuple ()=default |
| The default constructor does not initialize values.
|
int | GetSize () const |
| Get the size of the tuple.
|
double * | GetData () |
| Get a pointer to the underlying data of the tuple.
|
double & | operator[] (int i) |
| Get a reference to the underlying data element of the tuple.
|
double | operator() (int i) const |
| Get the value of the tuple at the index specified.
|
bool | Compare (const vtkTuple< double, Size > &other, const double &tol) const |
| Equality operator with a tolerance to allow fuzzy comparisons.
|
vtkTuple< TR, Size > | Cast () const |
| Cast the tuple to the specified type, returning the result.
|
Definition at line 515 of file vtkVector.h.