VMTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkvmtkPolyDataSurfaceRemeshing Class Reference

remesh a surface using quality triangles. More...

#include <vtkvmtkPolyDataSurfaceRemeshing.h>

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

Public Types

enum  {
  SUCCESS = 0, EDGE_ON_BOUNDARY, EDGE_BETWEEN_ENTITIES, EDGE_LOCKED,
  NOT_EDGE, NON_MANIFOLD, NOT_TRIANGLES, DEGENERATE_TRIANGLES,
  TRIANGLE_LOCKED
}
 
enum  { DO_CHANGE, DO_NOTHING }
 
enum  { TARGET_AREA, TARGET_AREA_ARRAY }
 
enum  { RELOCATE_SUCCESS, RELOCATE_FAILURE }
 
enum  { INTERNAL_POINT, POINT_ON_BOUNDARY, NO_NEIGHBORS }
 
typedef vtkPolyDataAlgorithm Superclass
 

Public Member Functions

virtual int IsA (const char *type)
 
vtkvmtkPolyDataSurfaceRemeshingNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) VTK_OVERRIDE
 
virtual void SetAspectRatioThreshold (double)
 
virtual double GetAspectRatioThreshold ()
 
virtual void SetInternalAngleTolerance (double)
 
virtual double GetInternalAngleTolerance ()
 
virtual void SetNormalAngleTolerance (double)
 
virtual double GetNormalAngleTolerance ()
 
virtual void SetCollapseAngleThreshold (double)
 
virtual double GetCollapseAngleThreshold ()
 
virtual void SetRelaxation (double)
 
virtual double GetRelaxation ()
 
virtual void SetTargetArea (double)
 
virtual double GetTargetArea ()
 
virtual void SetTargetAreaFactor (double)
 
virtual double GetTargetAreaFactor ()
 
virtual void SetTriangleSplitFactor (double)
 
virtual double GetTriangleSplitFactor ()
 
virtual void SetMinAreaFactor (double)
 
virtual double GetMinAreaFactor ()
 
virtual void SetMaxArea (double)
 
virtual double GetMaxArea ()
 
virtual void SetMinArea (double)
 
virtual double GetMinArea ()
 
virtual void SetNumberOfIterations (int)
 
virtual int GetNumberOfIterations ()
 
virtual void SetNumberOfConnectivityOptimizationIterations (int)
 
virtual int GetNumberOfConnectivityOptimizationIterations ()
 
virtual void SetTargetAreaArrayName (const char *)
 
virtual char * GetTargetAreaArrayName ()
 
virtual void SetElementSizeMode (int)
 
virtual int GetElementSizeMode ()
 
void SetElementSizeModeToTargetArea ()
 
void SetElementSizeModeToTargetAreaArray ()
 
virtual void SetPreserveBoundaryEdges (int)
 
virtual int GetPreserveBoundaryEdges ()
 
virtual void PreserveBoundaryEdgesOn ()
 
virtual void PreserveBoundaryEdgesOff ()
 
virtual void SetCellEntityIdsArrayName (const char *)
 
virtual char * GetCellEntityIdsArrayName ()
 
virtual void SetExcludedEntityIds (vtkIdList *)
 
virtual vtkIdList * GetExcludedEntityIds ()
 

Static Public Member Functions

static vtkvmtkPolyDataSurfaceRemeshingNew ()
 
static int IsTypeOf (const char *type)
 
static vtkvmtkPolyDataSurfaceRemeshingSafeDownCast (vtkObjectBase *o)
 

Protected Member Functions

virtual vtkObjectBase * NewInstanceInternal () const
 
 vtkvmtkPolyDataSurfaceRemeshing ()
 
 ~vtkvmtkPolyDataSurfaceRemeshing ()
 
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE
 
void BuildEntityBoundary (vtkPolyData *input, vtkPolyData *entityBoundary)
 
int EdgeFlipConnectivityOptimizationIteration ()
 
int EdgeFlipIteration ()
 
int EdgeCollapseIteration ()
 
int TriangleSplitIteration ()
 
int EdgeSplitIteration ()
 
int PointRelocationIteration (bool projectToSurface=true)
 
int TestFlipEdgeValidity (vtkIdType pt1, vtkIdType pt2, vtkIdType cell1, vtkIdType cell2, vtkIdType pt3, vtkIdType pt4)
 
int TestConnectivityFlipEdge (vtkIdType pt1, vtkIdType pt2)
 
int TestDelaunayFlipEdge (vtkIdType pt1, vtkIdType pt2)
 
int TestAspectRatioCollapseEdge (vtkIdType cellId, vtkIdType &pt1, vtkIdType &pt2)
 
int TestTriangleSplit (vtkIdType cellId)
 
int TestAreaSplitEdge (vtkIdType cellId, vtkIdType &pt1, vtkIdType &pt2)
 
int IsElementExcluded (vtkIdType cellId)
 
int GetEdgeCellsAndOppositeEdge (vtkIdType pt1, vtkIdType pt2, vtkIdType &cell1, vtkIdType &cell2, vtkIdType &pt3, vtkIdType &pt4)
 
int SplitEdge (vtkIdType pt1, vtkIdType pt2)
 
int CollapseEdge (vtkIdType pt1, vtkIdType pt2)
 
int FlipEdge (vtkIdType pt1, vtkIdType pt2)
 
int SplitTriangle (vtkIdType cellId)
 
int CollapseTriangle (vtkIdType cellId)
 
int RelocatePoint (vtkIdType pointId, bool projectToSurface)
 
int IsPointOnBoundary (vtkIdType pointId)
 
int IsPointOnEntityBoundary (vtkIdType pointId)
 
int GetNumberOfBoundaryEdges (vtkIdType cellId)
 
double ComputeTriangleTargetArea (vtkIdType cellId)
 
int FindOneRingNeighbors (vtkIdType pointId, vtkIdList *neighborIds)
 

Protected Attributes

vtkPolyData * Mesh
 
vtkPolyData * InputBoundary
 
vtkPolyData * InputEntityBoundary
 
vtkCellLocator * Locator
 
vtkCellLocator * BoundaryLocator
 
vtkCellLocator * EntityBoundaryLocator
 
vtkIntArray * CellEntityIdsArray
 
vtkDataArray * TargetAreaArray
 
vtkIdList * ExcludedEntityIds
 
double AspectRatioThreshold
 
double InternalAngleTolerance
 
double NormalAngleTolerance
 
double CollapseAngleThreshold
 
double Relaxation
 
int NumberOfConnectivityOptimizationIterations
 
int NumberOfIterations
 
int PreserveBoundaryEdges
 
int ElementSizeMode
 
double TargetArea
 
double TargetAreaFactor
 
double MaxArea
 
double MinArea
 
double MinAreaFactor
 
double TriangleSplitFactor
 
char * TargetAreaArrayName
 
char * CellEntityIdsArrayName
 

Detailed Description

remesh a surface using quality triangles.

Date
2006/04/06 16:46:44
Revision
1.5

..

Definition at line 39 of file vtkvmtkPolyDataSurfaceRemeshing.h.

Member Typedef Documentation

◆ Superclass

typedef vtkPolyDataAlgorithm vtkvmtkPolyDataSurfaceRemeshing::Superclass

Definition at line 44 of file vtkvmtkPolyDataSurfaceRemeshing.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum

◆ anonymous enum

anonymous enum

◆ anonymous enum

anonymous enum

◆ anonymous enum

anonymous enum

◆ anonymous enum

anonymous enum

Constructor & Destructor Documentation

◆ vtkvmtkPolyDataSurfaceRemeshing()

vtkvmtkPolyDataSurfaceRemeshing::vtkvmtkPolyDataSurfaceRemeshing ( )
protected

◆ ~vtkvmtkPolyDataSurfaceRemeshing()

vtkvmtkPolyDataSurfaceRemeshing::~vtkvmtkPolyDataSurfaceRemeshing ( )
protected

Member Function Documentation

◆ New()

static vtkvmtkPolyDataSurfaceRemeshing* vtkvmtkPolyDataSurfaceRemeshing::New ( )
static

◆ IsTypeOf()

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

◆ IsA()

virtual int vtkvmtkPolyDataSurfaceRemeshing::IsA ( const char *  type)
virtual

◆ SafeDownCast()

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

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkvmtkPolyDataSurfaceRemeshing::NewInstanceInternal ( ) const
protectedvirtual

◆ NewInstance()

vtkvmtkPolyDataSurfaceRemeshing* vtkvmtkPolyDataSurfaceRemeshing::NewInstance ( ) const

◆ PrintSelf()

void vtkvmtkPolyDataSurfaceRemeshing::PrintSelf ( ostream &  os,
vtkIndent  indent 
)

◆ SetAspectRatioThreshold()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetAspectRatioThreshold ( double  )
virtual

◆ GetAspectRatioThreshold()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetAspectRatioThreshold ( )
virtual

◆ SetInternalAngleTolerance()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetInternalAngleTolerance ( double  )
virtual

◆ GetInternalAngleTolerance()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetInternalAngleTolerance ( )
virtual

◆ SetNormalAngleTolerance()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetNormalAngleTolerance ( double  )
virtual

◆ GetNormalAngleTolerance()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetNormalAngleTolerance ( )
virtual

◆ SetCollapseAngleThreshold()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetCollapseAngleThreshold ( double  )
virtual

◆ GetCollapseAngleThreshold()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetCollapseAngleThreshold ( )
virtual

◆ SetRelaxation()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetRelaxation ( double  )
virtual

◆ GetRelaxation()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetRelaxation ( )
virtual

◆ SetTargetArea()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetTargetArea ( double  )
virtual

◆ GetTargetArea()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetTargetArea ( )
virtual

◆ SetTargetAreaFactor()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetTargetAreaFactor ( double  )
virtual

◆ GetTargetAreaFactor()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetTargetAreaFactor ( )
virtual

◆ SetTriangleSplitFactor()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetTriangleSplitFactor ( double  )
virtual

◆ GetTriangleSplitFactor()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetTriangleSplitFactor ( )
virtual

◆ SetMinAreaFactor()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetMinAreaFactor ( double  )
virtual

◆ GetMinAreaFactor()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetMinAreaFactor ( )
virtual

◆ SetMaxArea()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetMaxArea ( double  )
virtual

◆ GetMaxArea()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetMaxArea ( )
virtual

◆ SetMinArea()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetMinArea ( double  )
virtual

◆ GetMinArea()

virtual double vtkvmtkPolyDataSurfaceRemeshing::GetMinArea ( )
virtual

◆ SetNumberOfIterations()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetNumberOfIterations ( int  )
virtual

◆ GetNumberOfIterations()

virtual int vtkvmtkPolyDataSurfaceRemeshing::GetNumberOfIterations ( )
virtual

◆ SetNumberOfConnectivityOptimizationIterations()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetNumberOfConnectivityOptimizationIterations ( int  )
virtual

◆ GetNumberOfConnectivityOptimizationIterations()

virtual int vtkvmtkPolyDataSurfaceRemeshing::GetNumberOfConnectivityOptimizationIterations ( )
virtual

◆ SetTargetAreaArrayName()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetTargetAreaArrayName ( const char *  )
virtual

◆ GetTargetAreaArrayName()

virtual char* vtkvmtkPolyDataSurfaceRemeshing::GetTargetAreaArrayName ( )
virtual

◆ SetElementSizeMode()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetElementSizeMode ( int  )
virtual

◆ GetElementSizeMode()

virtual int vtkvmtkPolyDataSurfaceRemeshing::GetElementSizeMode ( )
virtual

◆ SetElementSizeModeToTargetArea()

void vtkvmtkPolyDataSurfaceRemeshing::SetElementSizeModeToTargetArea ( )
inline

◆ SetElementSizeModeToTargetAreaArray()

void vtkvmtkPolyDataSurfaceRemeshing::SetElementSizeModeToTargetAreaArray ( )
inline

◆ SetPreserveBoundaryEdges()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetPreserveBoundaryEdges ( int  )
virtual

◆ GetPreserveBoundaryEdges()

virtual int vtkvmtkPolyDataSurfaceRemeshing::GetPreserveBoundaryEdges ( )
virtual

◆ PreserveBoundaryEdgesOn()

virtual void vtkvmtkPolyDataSurfaceRemeshing::PreserveBoundaryEdgesOn ( )
virtual

◆ PreserveBoundaryEdgesOff()

virtual void vtkvmtkPolyDataSurfaceRemeshing::PreserveBoundaryEdgesOff ( )
virtual

◆ SetCellEntityIdsArrayName()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetCellEntityIdsArrayName ( const char *  )
virtual

◆ GetCellEntityIdsArrayName()

virtual char* vtkvmtkPolyDataSurfaceRemeshing::GetCellEntityIdsArrayName ( )
virtual

◆ SetExcludedEntityIds()

virtual void vtkvmtkPolyDataSurfaceRemeshing::SetExcludedEntityIds ( vtkIdList *  )
virtual

◆ GetExcludedEntityIds()

virtual vtkIdList* vtkvmtkPolyDataSurfaceRemeshing::GetExcludedEntityIds ( )
virtual

◆ RequestData()

virtual int vtkvmtkPolyDataSurfaceRemeshing::RequestData ( vtkInformation *  ,
vtkInformationVector **  ,
vtkInformationVector *   
)
protectedvirtual

◆ BuildEntityBoundary()

void vtkvmtkPolyDataSurfaceRemeshing::BuildEntityBoundary ( vtkPolyData *  input,
vtkPolyData *  entityBoundary 
)
protected

◆ EdgeFlipConnectivityOptimizationIteration()

int vtkvmtkPolyDataSurfaceRemeshing::EdgeFlipConnectivityOptimizationIteration ( )
protected

◆ EdgeFlipIteration()

int vtkvmtkPolyDataSurfaceRemeshing::EdgeFlipIteration ( )
protected

◆ EdgeCollapseIteration()

int vtkvmtkPolyDataSurfaceRemeshing::EdgeCollapseIteration ( )
protected

◆ TriangleSplitIteration()

int vtkvmtkPolyDataSurfaceRemeshing::TriangleSplitIteration ( )
protected

◆ EdgeSplitIteration()

int vtkvmtkPolyDataSurfaceRemeshing::EdgeSplitIteration ( )
protected

◆ PointRelocationIteration()

int vtkvmtkPolyDataSurfaceRemeshing::PointRelocationIteration ( bool  projectToSurface = true)
protected

◆ TestFlipEdgeValidity()

int vtkvmtkPolyDataSurfaceRemeshing::TestFlipEdgeValidity ( vtkIdType  pt1,
vtkIdType  pt2,
vtkIdType  cell1,
vtkIdType  cell2,
vtkIdType  pt3,
vtkIdType  pt4 
)
protected

◆ TestConnectivityFlipEdge()

int vtkvmtkPolyDataSurfaceRemeshing::TestConnectivityFlipEdge ( vtkIdType  pt1,
vtkIdType  pt2 
)
protected

◆ TestDelaunayFlipEdge()

int vtkvmtkPolyDataSurfaceRemeshing::TestDelaunayFlipEdge ( vtkIdType  pt1,
vtkIdType  pt2 
)
protected

◆ TestAspectRatioCollapseEdge()

int vtkvmtkPolyDataSurfaceRemeshing::TestAspectRatioCollapseEdge ( vtkIdType  cellId,
vtkIdType &  pt1,
vtkIdType &  pt2 
)
protected

◆ TestTriangleSplit()

int vtkvmtkPolyDataSurfaceRemeshing::TestTriangleSplit ( vtkIdType  cellId)
protected

◆ TestAreaSplitEdge()

int vtkvmtkPolyDataSurfaceRemeshing::TestAreaSplitEdge ( vtkIdType  cellId,
vtkIdType &  pt1,
vtkIdType &  pt2 
)
protected

◆ IsElementExcluded()

int vtkvmtkPolyDataSurfaceRemeshing::IsElementExcluded ( vtkIdType  cellId)
protected

◆ GetEdgeCellsAndOppositeEdge()

int vtkvmtkPolyDataSurfaceRemeshing::GetEdgeCellsAndOppositeEdge ( vtkIdType  pt1,
vtkIdType  pt2,
vtkIdType &  cell1,
vtkIdType &  cell2,
vtkIdType &  pt3,
vtkIdType &  pt4 
)
protected

◆ SplitEdge()

int vtkvmtkPolyDataSurfaceRemeshing::SplitEdge ( vtkIdType  pt1,
vtkIdType  pt2 
)
protected

◆ CollapseEdge()

int vtkvmtkPolyDataSurfaceRemeshing::CollapseEdge ( vtkIdType  pt1,
vtkIdType  pt2 
)
protected

◆ FlipEdge()

int vtkvmtkPolyDataSurfaceRemeshing::FlipEdge ( vtkIdType  pt1,
vtkIdType  pt2 
)
protected

◆ SplitTriangle()

int vtkvmtkPolyDataSurfaceRemeshing::SplitTriangle ( vtkIdType  cellId)
protected

◆ CollapseTriangle()

int vtkvmtkPolyDataSurfaceRemeshing::CollapseTriangle ( vtkIdType  cellId)
protected

◆ RelocatePoint()

int vtkvmtkPolyDataSurfaceRemeshing::RelocatePoint ( vtkIdType  pointId,
bool  projectToSurface 
)
protected

◆ IsPointOnBoundary()

int vtkvmtkPolyDataSurfaceRemeshing::IsPointOnBoundary ( vtkIdType  pointId)
protected

◆ IsPointOnEntityBoundary()

int vtkvmtkPolyDataSurfaceRemeshing::IsPointOnEntityBoundary ( vtkIdType  pointId)
protected

◆ GetNumberOfBoundaryEdges()

int vtkvmtkPolyDataSurfaceRemeshing::GetNumberOfBoundaryEdges ( vtkIdType  cellId)
protected

◆ ComputeTriangleTargetArea()

double vtkvmtkPolyDataSurfaceRemeshing::ComputeTriangleTargetArea ( vtkIdType  cellId)
protected

◆ FindOneRingNeighbors()

int vtkvmtkPolyDataSurfaceRemeshing::FindOneRingNeighbors ( vtkIdType  pointId,
vtkIdList *  neighborIds 
)
protected

Member Data Documentation

◆ Mesh

vtkPolyData* vtkvmtkPolyDataSurfaceRemeshing::Mesh
protected

Definition at line 184 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ InputBoundary

vtkPolyData* vtkvmtkPolyDataSurfaceRemeshing::InputBoundary
protected

Definition at line 185 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ InputEntityBoundary

vtkPolyData* vtkvmtkPolyDataSurfaceRemeshing::InputEntityBoundary
protected

Definition at line 186 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ Locator

vtkCellLocator* vtkvmtkPolyDataSurfaceRemeshing::Locator
protected

Definition at line 187 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ BoundaryLocator

vtkCellLocator* vtkvmtkPolyDataSurfaceRemeshing::BoundaryLocator
protected

Definition at line 188 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ EntityBoundaryLocator

vtkCellLocator* vtkvmtkPolyDataSurfaceRemeshing::EntityBoundaryLocator
protected

Definition at line 189 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ CellEntityIdsArray

vtkIntArray* vtkvmtkPolyDataSurfaceRemeshing::CellEntityIdsArray
protected

Definition at line 190 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ TargetAreaArray

vtkDataArray* vtkvmtkPolyDataSurfaceRemeshing::TargetAreaArray
protected

Definition at line 191 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ ExcludedEntityIds

vtkIdList* vtkvmtkPolyDataSurfaceRemeshing::ExcludedEntityIds
protected

Definition at line 192 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ AspectRatioThreshold

double vtkvmtkPolyDataSurfaceRemeshing::AspectRatioThreshold
protected

Definition at line 194 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ InternalAngleTolerance

double vtkvmtkPolyDataSurfaceRemeshing::InternalAngleTolerance
protected

Definition at line 195 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ NormalAngleTolerance

double vtkvmtkPolyDataSurfaceRemeshing::NormalAngleTolerance
protected

Definition at line 196 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ CollapseAngleThreshold

double vtkvmtkPolyDataSurfaceRemeshing::CollapseAngleThreshold
protected

Definition at line 197 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ Relaxation

double vtkvmtkPolyDataSurfaceRemeshing::Relaxation
protected

Definition at line 198 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ NumberOfConnectivityOptimizationIterations

int vtkvmtkPolyDataSurfaceRemeshing::NumberOfConnectivityOptimizationIterations
protected

Definition at line 199 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ NumberOfIterations

int vtkvmtkPolyDataSurfaceRemeshing::NumberOfIterations
protected

Definition at line 200 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ PreserveBoundaryEdges

int vtkvmtkPolyDataSurfaceRemeshing::PreserveBoundaryEdges
protected

Definition at line 202 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ ElementSizeMode

int vtkvmtkPolyDataSurfaceRemeshing::ElementSizeMode
protected

Definition at line 204 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ TargetArea

double vtkvmtkPolyDataSurfaceRemeshing::TargetArea
protected

Definition at line 205 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ TargetAreaFactor

double vtkvmtkPolyDataSurfaceRemeshing::TargetAreaFactor
protected

Definition at line 206 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ MaxArea

double vtkvmtkPolyDataSurfaceRemeshing::MaxArea
protected

Definition at line 207 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ MinArea

double vtkvmtkPolyDataSurfaceRemeshing::MinArea
protected

Definition at line 208 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ MinAreaFactor

double vtkvmtkPolyDataSurfaceRemeshing::MinAreaFactor
protected

Definition at line 209 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ TriangleSplitFactor

double vtkvmtkPolyDataSurfaceRemeshing::TriangleSplitFactor
protected

Definition at line 210 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ TargetAreaArrayName

char* vtkvmtkPolyDataSurfaceRemeshing::TargetAreaArrayName
protected

Definition at line 211 of file vtkvmtkPolyDataSurfaceRemeshing.h.

◆ CellEntityIdsArrayName

char* vtkvmtkPolyDataSurfaceRemeshing::CellEntityIdsArrayName
protected

Definition at line 213 of file vtkvmtkPolyDataSurfaceRemeshing.h.


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