VTK
Classes | Macros
vtkVector.h File Reference
#include "vtkTuple.h"
#include "vtkObject.h"
#include <cmath>
Include dependency graph for vtkVector.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  vtkVector< T, Size >
 templated base type for storage of vectors. More...
 
class  vtkVector2< T >
 
class  vtkVector3< T >
 
class  vtkVector2i
 Some derived classes for the different vectors commonly used. More...
 
class  vtkVector2f
 
class  vtkVector2d
 
class  vtkVector3i
 
class  vtkVector3f
 
class  vtkVector3d
 

Macros

#define vtkVectorNormalized(vectorType, type, size)
 Some inline functions for the derived types. More...
 
#define vtkVectorDerivedMacro(vectorType, type, size)
 
#define vtkVector3Cross(vectorType, type)
 

Macro Definition Documentation

#define vtkVectorNormalized (   vectorType,
  type,
  size 
)
Value:
vectorType Normalized() const \
{ \
return vectorType(vtkVector<type, size>::Normalized().GetData()); \
} \
templated base type for storage of vectors.
Definition: vtkVector.h:40

Some inline functions for the derived types.

Definition at line 310 of file vtkVector.h.

#define vtkVectorDerivedMacro (   vectorType,
  type,
  size 
)
Value:
vtkVectorNormalized(vectorType, type, size) \
explicit vectorType(type s) : Superclass(s) {} \
explicit vectorType(const type *i) : Superclass(i) {} \
explicit vectorType(const vtkTuple<type, size> &o) : Superclass(o.GetData()) {} \
vectorType(const vtkVector<type, size> &o) : Superclass(o.GetData()) {} \
templated base type for storage of vectors.
Definition: vtkVector.h:40
templated base type for containers of constant size.
Definition: vtkTuple.h:35
#define vtkVectorNormalized(vectorType, type, size)
Some inline functions for the derived types.
Definition: vtkVector.h:310

Definition at line 316 of file vtkVector.h.

#define vtkVector3Cross (   vectorType,
  type 
)
Value:
vectorType Cross(const vectorType& other) const \
{ \
return vectorType(vtkVector3<type>::Cross(other).GetData()); \
} \

Definition at line 355 of file vtkVector.h.