VTK
|
abstract interface for implicit functions More...
#include <vtkImplicitFunction.h>
abstract interface for implicit functions
vtkImplicitFunction specifies an abstract interface for implicit functions. Implicit functions are real valued functions defined in 3D space, w = F(x,y,z). Two primitive operations are required: the ability to evaluate the function, and the function gradient at a given point. The implicit function divides space into three regions: on the surface (F(x,y,z)=w), outside of the surface (F(x,y,z)>c), and inside the surface (F(x,y,z)<c). (When c is zero, positive values are outside, negative values are inside, and zero is on the surface. Note also that the function gradient points from inside to outside.)
Implicit functions are very powerful. It is possible to represent almost any type of geometry with the level sets w = const, especially if you use boolean combinations of implicit functions (see vtkImplicitBoolean).
vtkImplicitFunction provides a mechanism to transform the implicit function(s) via a vtkAbstractTransform. This capability can be used to translate, orient, scale, or warp implicit functions. For example, a sphere implicit function can be transformed into an oriented ellipse.
Definition at line 57 of file vtkImplicitFunction.h.
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
Definition at line 60 of file vtkImplicitFunction.h.
vtkImplicitFunction::vtkImplicitFunction | ( | ) | [protected] |
vtkImplicitFunction::~vtkImplicitFunction | ( | ) | [protected] |
static int vtkImplicitFunction::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkPlanesIntersection, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
virtual int vtkImplicitFunction::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkPlanesIntersection, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
static vtkImplicitFunction* vtkImplicitFunction::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkPlanesIntersection, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
virtual vtkObjectBase* vtkImplicitFunction::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkPlanesIntersection, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkPlanesIntersection, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
void vtkImplicitFunction::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkPlanes, vtkSuperquadric, vtkPlanesIntersection, vtkImplicitPolyDataDistance, vtkImplicitDataSet, vtkImplicitBoolean, vtkImplicitVolume, vtkCone, vtkPerlinNoise, vtkPolyPlane, vtkImplicitSum, vtkImplicitWindowFunction, vtkBox, vtkImplicitHalo, vtkPlane, vtkCylinder, vtkSphere, and vtkQuadric.
unsigned long vtkImplicitFunction::GetMTime | ( | ) | [virtual] |
Overload standard modified time function. If Transform is modified, then this object is modified as well.
Reimplemented from vtkObject.
Reimplemented in vtkImplicitSelectionLoop, vtkImplicitWindowFunction, vtkImplicitBoolean, vtkPolyPlane, vtkImplicitDataSet, vtkImplicitVolume, vtkImplicitSum, and vtkImplicitPolyDataDistance.
double vtkImplicitFunction::FunctionValue | ( | const double | x[3] | ) |
Evaluate function at position x-y-z and return value. Point x[3] is transformed through transform (if provided).
double vtkImplicitFunction::FunctionValue | ( | double | x, |
double | y, | ||
double | z | ||
) | [inline] |
Evaluate function at position x-y-z and return value. Point x[3] is transformed through transform (if provided).
Definition at line 71 of file vtkImplicitFunction.h.
void vtkImplicitFunction::FunctionGradient | ( | const double | x[3], |
double | g[3] | ||
) |
Evaluate function gradient at position x-y-z and pass back vector. Point x[3] is transformed through transform (if provided).
double* vtkImplicitFunction::FunctionGradient | ( | const double | x[3] | ) | [inline] |
Evaluate function gradient at position x-y-z and pass back vector. Point x[3] is transformed through transform (if provided).
Definition at line 79 of file vtkImplicitFunction.h.
double* vtkImplicitFunction::FunctionGradient | ( | double | x, |
double | y, | ||
double | z | ||
) | [inline] |
Evaluate function gradient at position x-y-z and pass back vector. Point x[3] is transformed through transform (if provided).
Definition at line 82 of file vtkImplicitFunction.h.
virtual void vtkImplicitFunction::SetTransform | ( | vtkAbstractTransform * | ) | [virtual] |
Set/Get a transformation to apply to input points before executing the implicit function.
virtual void vtkImplicitFunction::SetTransform | ( | const double | elements[16] | ) | [virtual] |
Set/Get a transformation to apply to input points before executing the implicit function.
virtual vtkAbstractTransform* vtkImplicitFunction::GetTransform | ( | ) | [virtual] |
Set/Get a transformation to apply to input points before executing the implicit function.
virtual double vtkImplicitFunction::EvaluateFunction | ( | double | x[3] | ) | [pure virtual] |
Evaluate function at position x-y-z and return value. You should generally not call this method directly, you should use FunctionValue() instead. This method must be implemented by any derived class.
Implemented in vtkImplicitSelectionLoop, vtkImplicitBoolean, vtkImplicitDataSet, vtkImplicitVolume, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkPerlinNoise, vtkCone, vtkImplicitWindowFunction, vtkBox, vtkPolyPlane, vtkImplicitSum, vtkCylinder, vtkImplicitHalo, vtkPlane, vtkSphere, and vtkQuadric.
double vtkImplicitFunction::EvaluateFunction | ( | double | x, |
double | y, | ||
double | z | ||
) | [inline] |
Evaluate function at position x-y-z and return value. You should generally not call this method directly, you should use FunctionValue() instead. This method must be implemented by any derived class.
Reimplemented in vtkImplicitSelectionLoop, vtkImplicitBoolean, vtkImplicitDataSet, vtkImplicitVolume, vtkPlanes, vtkSuperquadric, vtkPerlinNoise, vtkCone, vtkImplicitWindowFunction, vtkBox, vtkPolyPlane, vtkImplicitSum, vtkCylinder, vtkImplicitHalo, vtkPlane, vtkSphere, and vtkQuadric.
Definition at line 100 of file vtkImplicitFunction.h.
virtual void vtkImplicitFunction::EvaluateGradient | ( | double | x[3], |
double | g[3] | ||
) | [pure virtual] |
Evaluate function gradient at position x-y-z and pass back vector. You should generally not call this method directly, you should use FunctionGradient() instead. This method must be implemented by any derived class.
Implemented in vtkImplicitSelectionLoop, vtkImplicitBoolean, vtkImplicitDataSet, vtkImplicitVolume, vtkPlanes, vtkSuperquadric, vtkImplicitPolyDataDistance, vtkPerlinNoise, vtkCone, vtkImplicitWindowFunction, vtkBox, vtkImplicitSum, vtkPolyPlane, vtkImplicitHalo, vtkCylinder, vtkPlane, vtkSphere, and vtkQuadric.
vtkAbstractTransform* vtkImplicitFunction::Transform [protected] |
Definition at line 114 of file vtkImplicitFunction.h.
double vtkImplicitFunction::ReturnValue[3] [protected] |
Definition at line 115 of file vtkImplicitFunction.h.