An algorithm that refines an initial simplicial tessellation using edge subdivision.
More...
|
virtual int | IsA (const char *type) |
| Return 1 if this class is the same type of (or a subclass of) the named class. More...
|
|
vtkStreamingTessellator * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
virtual const vtkEdgeSubdivisionCriterion * | GetSubdivisionAlgorithm () const |
|
|
virtual void | SetTetrahedronCallback (TetrahedronProcessorFunction) |
| Get/Set the function called for each output tetrahedron (3-facet). More...
|
|
virtual TetrahedronProcessorFunction | GetTetrahedronCallback () const |
| Get/Set the function called for each output tetrahedron (3-facet). More...
|
|
|
virtual void | SetTriangleCallback (TriangleProcessorFunction) |
| Get/Set the function called for each output triangle (2-facet). More...
|
|
virtual TriangleProcessorFunction | GetTriangleCallback () const |
| Get/Set the function called for each output triangle (2-facet). More...
|
|
|
virtual void | SetEdgeCallback (EdgeProcessorFunction) |
| Get/Set the function called for each output line segment (1-facet). More...
|
|
virtual EdgeProcessorFunction | GetEdgeCallback () const |
| Get/Set the function called for each output line segment (1-facet). More...
|
|
|
virtual void | SetVertexCallback (VertexProcessorFunction) |
| Get/Set the function called for each output line segment (1-facet). More...
|
|
virtual VertexProcessorFunction | GetVertexCallback () const |
| Get/Set the function called for each output line segment (1-facet). More...
|
|
|
virtual void | SetPrivateData (void *Private) |
| Get/Set a void pointer passed to the triangle and edge output functions. More...
|
|
virtual void * | GetPrivateData () const |
| Get/Set a void pointer passed to the triangle and edge output functions. More...
|
|
|
virtual void | SetConstPrivateData (const void *ConstPrivate) |
| Get/Set a constant void pointer passed to the simplex output functions. More...
|
|
virtual const void * | GetConstPrivateData () const |
| Get/Set a constant void pointer passed to the simplex output functions. More...
|
|
|
virtual void | SetSubdivisionAlgorithm (vtkEdgeSubdivisionCriterion *) |
| Get/Set the algorithm used to determine whether an edge should be subdivided or left as-is. More...
|
|
virtual vtkEdgeSubdivisionCriterion * | GetSubdivisionAlgorithm () |
| Get/Set the algorithm used to determine whether an edge should be subdivided or left as-is. More...
|
|
|
virtual void | SetEmbeddingDimension (int k, int d) |
| Get/Set the number of parameter-space coordinates associated with each input and output point. More...
|
|
int | GetEmbeddingDimension (int k) const |
| Get/Set the number of parameter-space coordinates associated with each input and output point. More...
|
|
|
virtual void | SetFieldSize (int k, int s) |
| Get/Set the number of field value coordinates associated with each input and output point. More...
|
|
int | GetFieldSize (int k) const |
| Get/Set the number of field value coordinates associated with each input and output point. More...
|
|
|
virtual void | SetMaximumNumberOfSubdivisions (int num_subdiv_in) |
| Get/Set the maximum number of subdivisions that may occur. More...
|
|
int | GetMaximumNumberOfSubdivisions () |
| Get/Set the maximum number of subdivisions that may occur. More...
|
|
|
void | AdaptivelySample3Facet (double *v1, double *v2, double *v3, double *v4) const |
| This will adaptively subdivide the tetrahedron (3-facet), triangle (2-facet), or edge (1-facet) until the subdivision algorithm returns false for every edge or the maximum recursion depth is reached. More...
|
|
void | AdaptivelySample2Facet (double *v1, double *v2, double *v3) const |
| This will adaptively subdivide the tetrahedron (3-facet), triangle (2-facet), or edge (1-facet) until the subdivision algorithm returns false for every edge or the maximum recursion depth is reached. More...
|
|
void | AdaptivelySample1Facet (double *v1, double *v2) const |
| This will adaptively subdivide the tetrahedron (3-facet), triangle (2-facet), or edge (1-facet) until the subdivision algorithm returns false for every edge or the maximum recursion depth is reached. More...
|
|
void | AdaptivelySample0Facet (double *v1) const |
| This will adaptively subdivide the tetrahedron (3-facet), triangle (2-facet), or edge (1-facet) until the subdivision algorithm returns false for every edge or the maximum recursion depth is reached. More...
|
|
|
void | ResetCounts () |
| Reset/access the histogram of subdivision cases encountered. More...
|
|
vtkIdType | GetCaseCount (int c) |
| Reset/access the histogram of subdivision cases encountered. More...
|
|
vtkIdType | GetSubcaseCount (int casenum, int sub) |
| Reset/access the histogram of subdivision cases encountered. More...
|
|
| vtkBaseTypeMacro (vtkObject, vtkObjectBase) |
|
virtual void | DebugOn () |
| Turn debugging output on. More...
|
|
virtual void | DebugOff () |
| Turn debugging output off. More...
|
|
bool | GetDebug () |
| Get the value of the debug flag. More...
|
|
void | SetDebug (bool debugFlag) |
| Set the value of the debug flag. More...
|
|
virtual void | Modified () |
| Update the modification time for this object. More...
|
|
virtual vtkMTimeType | GetMTime () |
| Return this object's modified time. More...
|
|
void | RemoveObserver (unsigned long tag) |
|
void | RemoveObservers (unsigned long event) |
|
void | RemoveObservers (const char *event) |
|
void | RemoveAllObservers () |
|
int | HasObserver (unsigned long event) |
|
int | HasObserver (const char *event) |
|
int | InvokeEvent (unsigned long event) |
|
int | InvokeEvent (const char *event) |
|
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
vtkCommand * | GetCommand (unsigned long tag) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
void | RemoveObserver (vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
void | RemoveObservers (unsigned long event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
void | RemoveObservers (const char *event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
int | HasObserver (unsigned long event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
int | HasObserver (const char *event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
| Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
| Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
| Allow user to set the AbortFlagOn() with the return value of the callback method. More...
|
|
int | InvokeEvent (unsigned long event, void *callData) |
| This method invokes an event and return whether the event was aborted or not. More...
|
|
int | InvokeEvent (const char *event, void *callData) |
| This method invokes an event and return whether the event was aborted or not. More...
|
|
const char * | GetClassName () const |
| Return the class name as a string. More...
|
|
virtual void | Delete () |
| Delete a VTK object. More...
|
|
virtual void | FastDelete () |
| Delete a reference to this object. More...
|
|
void | InitializeObjectBase () |
|
void | Print (ostream &os) |
| Print an object to an ostream. More...
|
|
virtual void | Register (vtkObjectBase *o) |
| Increase the reference count (mark as used by another object). More...
|
|
virtual void | UnRegister (vtkObjectBase *o) |
| Decrease the reference count (release by another object). More...
|
|
int | GetReferenceCount () |
| Return the current reference count of this object. More...
|
|
void | SetReferenceCount (int) |
| Sets the reference count. More...
|
|
void | PrintRevisions (ostream &) |
| Legacy. More...
|
|
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
An algorithm that refines an initial simplicial tessellation using edge subdivision.
This class is a simple algorithm that takes a single starting simplex – a tetrahedron, triangle, or line segment – and calls a function you pass it with (possibly many times) tetrahedra, triangles, or lines adaptively sampled from the one you specified. It uses an algorithm you specify to control the level of adaptivity.
This class does not create vtkUnstructuredGrid output because it is intended for use in mappers as well as filters. Instead, it calls the registered function with simplices as they are created.
The subdivision algorithm should change the vertex coordinates (it must change both geometric and, if desired, parametric coordinates) of the midpoint. These coordinates need not be changed unless the EvaluateEdge() member returns true. The vtkStreamingTessellator itself has no way of creating a more accurate midpoint vertex.
Here's how to use this class:
- Call AdaptivelySample1Facet, AdaptivelySample2Facet, or AdaptivelySample3Facet, with an edge, triangle, or tetrahedron you want tessellated.
- The adaptive tessellator classifies each edge by passing the midpoint values to the vtkEdgeSubdivisionCriterion.
- After each edge is classified, the tessellator subdivides edges as required until the subdivision criterion is satisfied or the maximum subdivision depth has been reached.
- Edges, triangles, or tetrahedra connecting the vertices generated by the subdivision algorithm are processed by calling the user-defined callback functions (set with SetTetrahedronCallback(), SetTriangleCallback(), or SetEdgeCallback() ).
- Warning
- Note that the vertices passed to AdaptivelySample3Facet, AdaptivelySample2Facet, or AdaptivelySample1Facet must be at least 6, 5, or 4 entries long, respectively! This is because the <r,s,t>, <r,s>, or <r> parametric coordinates of the vertices are maintained as the facet is subdivided. This information is often required by the subdivision algorithm in order to compute an error metric. You may change the number of parametric coordinates associated with each vertex using vtkStreamingTessellator::SetEmbeddingDimension().
- Interpolating Field Values:
- If you wish, you may also use
vtkStreamingTessellator
to interpolate field values at newly created vertices. Interpolated field values are stored just beyond the parametric coordinates associated with a vertex. They will always be double
values; it does not make sense to interpolate a boolean or string value and your output and subdivision subroutines may always cast to a float
or use floor()
to truncate an interpolated value to an integer.
- See also
- vtkEdgeSubdivisionCriterion
- Tests:
- vtkStreamingTessellator (Tests)
Definition at line 88 of file vtkStreamingTessellator.h.
virtual void vtkStreamingTessellator::SetFieldSize |
( |
int |
k, |
|
|
int |
s |
|
) |
| |
|
virtual |
Get/Set the number of field value coordinates associated with each input and output point.
The default is 0; no field values are interpolated. You may specify a different size, s, for each type of k -facet to be processed. For example, SetFieldSize
( 2
, 3
) would associate 3 field value coordinates with each input and output point of an AdaptivelySample2Facet
call, but does not say anything about input or output points of AdaptivelySample1Facet
. Call SetFieldSize
( -1
, s ) to specify the same dimension for all possible k values. s may not exceed vtkStreamingTessellator::MaxFieldSize. This is a compile-time constant that defaults to 18, which is large enough for a scalar, vector, tensor, normal, and texture coordinate to be included at each point.
Normally, you will not call SetFieldSize() directly; instead, subclasses of vtkEdgeSubdivisionCriterion, such as vtkShoeMeshSubdivisionAlgorithm, will call it for you.
In any event, setting FieldSize to a non-zero value means you must pass field values to the AdaptivelySamplekFacet
routines; For example,
* vtkStreamingTessellator* t = vtkStreamingTessellator::New();
* t->SetFieldSize( 1, 3 );
* t->SetEmbeddingDimension( 1, 1 ); // not really required, this is the default
* double p0[3+1+3] = { x0, y0, z0, r0, fx0, fy0, fz0 };
* double p1[3+1+3] = { x1, y1, z1, r1, fx1, fy1, fz1 };
* t->AdaptivelySample1Facet( p0, p1 );
*
This would adaptively sample an curve (1-facet) with geometry and a vector field at every output point on the curve.
int vtkStreamingTessellator::GetFieldSize |
( |
int |
k | ) |
const |
|
inline |
Get/Set the number of field value coordinates associated with each input and output point.
The default is 0; no field values are interpolated. You may specify a different size, s, for each type of k -facet to be processed. For example, SetFieldSize
( 2
, 3
) would associate 3 field value coordinates with each input and output point of an AdaptivelySample2Facet
call, but does not say anything about input or output points of AdaptivelySample1Facet
. Call SetFieldSize
( -1
, s ) to specify the same dimension for all possible k values. s may not exceed vtkStreamingTessellator::MaxFieldSize. This is a compile-time constant that defaults to 18, which is large enough for a scalar, vector, tensor, normal, and texture coordinate to be included at each point.
Normally, you will not call SetFieldSize() directly; instead, subclasses of vtkEdgeSubdivisionCriterion, such as vtkShoeMeshSubdivisionAlgorithm, will call it for you.
In any event, setting FieldSize to a non-zero value means you must pass field values to the AdaptivelySamplekFacet
routines; For example,
* vtkStreamingTessellator* t = vtkStreamingTessellator::New();
* t->SetFieldSize( 1, 3 );
* t->SetEmbeddingDimension( 1, 1 ); // not really required, this is the default
* double p0[3+1+3] = { x0, y0, z0, r0, fx0, fy0, fz0 };
* double p1[3+1+3] = { x1, y1, z1, r1, fx1, fy1, fz1 };
* t->AdaptivelySample1Facet( p0, p1 );
*
This would adaptively sample an curve (1-facet) with geometry and a vector field at every output point on the curve.
Definition at line 361 of file vtkStreamingTessellator.h.