VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Static Protected Member Functions | List of all members
vtkMeanValueCoordinatesInterpolator Class Reference

compute interpolation computes for closed triangular mesh More...

#include <vtkMeanValueCoordinatesInterpolator.h>

Inheritance diagram for vtkMeanValueCoordinatesInterpolator:
[legend]
Collaboration diagram for vtkMeanValueCoordinatesInterpolator:
[legend]

Public Types

typedef vtkObject Superclass
 
- Public Types inherited from vtkObject
typedef vtkObjectBase Superclass
 

Public Member Functions

virtual int IsA (const char *type)
 
vtkMeanValueCoordinatesInterpolatorNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent)
 
- Public Member Functions inherited from vtkObject
vtkObjectNewInstance () const
 
virtual void DebugOn ()
 
virtual void DebugOff ()
 
bool GetDebug ()
 
void SetDebug (bool debugFlag)
 
virtual void Modified ()
 
virtual unsigned long GetMTime ()
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 
vtkCommandGetCommand (unsigned long tag)
 
void RemoveObserver (vtkCommand *)
 
void RemoveObservers (unsigned long event, vtkCommand *)
 
void RemoveObservers (const char *event, vtkCommand *)
 
int HasObserver (unsigned long event, vtkCommand *)
 
int HasObserver (const char *event, vtkCommand *)
 
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)
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 
int InvokeEvent (unsigned long event, void *callData)
 
int InvokeEvent (const char *event, void *callData)
 
int InvokeEvent (unsigned long event)
 
int InvokeEvent (const char *event)
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 
virtual void Delete ()
 
virtual void FastDelete ()
 
void Print (ostream &os)
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 
virtual void Register (vtkObjectBase *o)
 
virtual void UnRegister (vtkObjectBase *o)
 
int GetReferenceCount ()
 
void SetReferenceCount (int)
 
void PrintRevisions (ostream &)
 

Static Public Member Functions

static vtkMeanValueCoordinatesInterpolatorNew ()
 
static int IsTypeOf (const char *type)
 
static vtkMeanValueCoordinatesInterpolatorSafeDownCast (vtkObjectBase *o)
 
static void ComputeInterpolationWeights (double x[3], vtkPoints *pts, vtkIdList *tris, double *weights)
 
static void ComputeInterpolationWeights (double x[3], vtkPoints *pts, vtkCellArray *tris, double *weights)
 
- Static Public Member Functions inherited from vtkObject
static int IsTypeOf (const char *type)
 
static vtkObjectSafeDownCast (vtkObjectBase *o)
 
static vtkObjectNew ()
 
static void BreakOnError ()
 
static void SetGlobalWarningDisplay (int val)
 
static void GlobalWarningDisplayOn ()
 
static void GlobalWarningDisplayOff ()
 
static int GetGlobalWarningDisplay ()
 
- Static Public Member Functions inherited from vtkObjectBase
static int IsTypeOf (const char *name)
 
static vtkObjectBaseNew ()
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkMeanValueCoordinatesInterpolator ()
 
 ~vtkMeanValueCoordinatesInterpolator ()
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
virtual ~vtkObject ()
 
virtual void RegisterInternal (vtkObjectBase *, int check)
 
virtual void UnRegisterInternal (vtkObjectBase *, int check)
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=NULL)
 
void InternalReleaseFocus ()
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void CollectRevisions (ostream &)
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Static Protected Member Functions

static void ComputeInterpolationWeightsForTriangleMesh (double x[3], vtkPoints *pts, vtkMVCTriIterator &iter, double *weights)
 
static void ComputeInterpolationWeightsForPolygonMesh (double x[3], vtkPoints *pts, vtkMVCPolyIterator &iter, double *weights)
 

Additional Inherited Members

- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
- Protected Attributes inherited from vtkObjectBase
vtkAtomicInt32 ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Detailed Description

compute interpolation computes for closed triangular mesh

vtkMeanValueCoordinatesInterpolator computes interpolation weights for a closed, manifold polyhedron mesh. Once computed, the interpolation weights can be used to interpolate data anywhere interior or exterior to the mesh. This work implements two MVC algorithms. The first one is for triangular meshes which is documented in the Siggraph 2005 paper by Tao Ju, Scot Schaefer and Joe Warren from Rice University "Mean Value Coordinates for Closed Triangular Meshes". The second one is for general polyhedron mesh which is documented in the Eurographics Symposium on Geometry Processing 2006 paper by Torsten Langer, Alexander Belyaev and Hans-Peter Seidel from MPI Informatik "Spherical Barycentric Coordinates". The filter will automatically choose which algorithm to use based on whether the input mesh is triangulated or not.

In VTK this class was initially created to interpolate data across polyhedral cells. In addition, the class can be used to interpolate data values from a polyhedron mesh, and to smoothly deform a mesh from an associated control mesh.

See also
vtkPolyhedralCell

Definition at line 57 of file vtkMeanValueCoordinatesInterpolator.h.

Member Typedef Documentation

◆ Superclass

Definition at line 63 of file vtkMeanValueCoordinatesInterpolator.h.

Constructor & Destructor Documentation

◆ vtkMeanValueCoordinatesInterpolator()

vtkMeanValueCoordinatesInterpolator::vtkMeanValueCoordinatesInterpolator ( )
protected

◆ ~vtkMeanValueCoordinatesInterpolator()

vtkMeanValueCoordinatesInterpolator::~vtkMeanValueCoordinatesInterpolator ( )
protected

Member Function Documentation

◆ New()

static vtkMeanValueCoordinatesInterpolator* vtkMeanValueCoordinatesInterpolator::New ( )
static

Standard instantiable class methods.

◆ IsTypeOf()

static int vtkMeanValueCoordinatesInterpolator::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual int vtkMeanValueCoordinatesInterpolator::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.

◆ SafeDownCast()

static vtkMeanValueCoordinatesInterpolator* vtkMeanValueCoordinatesInterpolator::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkMeanValueCoordinatesInterpolator::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkObject.

◆ NewInstance()

vtkMeanValueCoordinatesInterpolator* vtkMeanValueCoordinatesInterpolator::NewInstance ( ) const

◆ PrintSelf()

void vtkMeanValueCoordinatesInterpolator::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.

◆ ComputeInterpolationWeights() [1/2]

static void vtkMeanValueCoordinatesInterpolator::ComputeInterpolationWeights ( double  x[3],
vtkPoints pts,
vtkIdList tris,
double weights 
)
static

Method to generate interpolation weights for a point x[3] from a list of triangles. In this version of the method, the triangles are defined by a vtkPoints array plus a vtkIdList, where the vtkIdList is organized such that three ids in order define a triangle. Note that number of weights must equal the number of points.

◆ ComputeInterpolationWeights() [2/2]

static void vtkMeanValueCoordinatesInterpolator::ComputeInterpolationWeights ( double  x[3],
vtkPoints pts,
vtkCellArray tris,
double weights 
)
static

Method to generate interpolation weights for a point x[3] from a list of polygonal faces. In this version of the method, the faces are defined by a vtkPoints array plus a vtkCellArray, where the vtkCellArray contains all faces and is of format [nFace0Pts, pid1, pid2, pid3,..., nFace1Pts, pid1, pid2, pid3,...]. Note: the number of weights must equal the number of points.

◆ ComputeInterpolationWeightsForTriangleMesh()

static void vtkMeanValueCoordinatesInterpolator::ComputeInterpolationWeightsForTriangleMesh ( double  x[3],
vtkPoints pts,
vtkMVCTriIterator &  iter,
double weights 
)
staticprotected

Internal method that sets up the processing of triangular meshes.

◆ ComputeInterpolationWeightsForPolygonMesh()

static void vtkMeanValueCoordinatesInterpolator::ComputeInterpolationWeightsForPolygonMesh ( double  x[3],
vtkPoints pts,
vtkMVCPolyIterator &  iter,
double weights 
)
staticprotected

Internal method that sets up the processing of general polyhedron meshes.


The documentation for this class was generated from the following file: