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
 
class  vtkVector2f
 
class  vtkVector2d
 
class  vtkVector3i
 
class  vtkVector3f
 
class  vtkVector3d
 

Macros

#define vtkVectorDerivedMacro(vectorType, type, size)   vtkVectorNormalized(vectorType, type, size) \
 
#define vtkVector3Cross(vectorType, type)
 
#define vtkVectorNormalized(vectorType, type, size)
 

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:39

Some inline functions for the derived types.

Definition at line 253 of file vtkVector.h.

#define vtkVectorDerivedMacro (   vectorType,
  type,
  size 
)    vtkVectorNormalized(vectorType, type, size) \

Definition at line 260 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 296 of file vtkVector.h.