VTK-m  2.3
Classes | Enumerations
vtkm::filter::contour Namespace Reference

Classes

class  AbstractContour
 Contour filter interface. More...
 
class  ClipWithField
 Clip a dataset using a field. More...
 
class  ClipWithImplicitFunction
 Clip a dataset using an implicit function. More...
 
class  Contour
 Generate contours or isosurfaces from a region of space. More...
 
class  ContourFlyingEdges
 generate isosurface(s) from a 3-dimensional structured mesh More...
 
class  ContourMarchingCells
 generate isosurface(s) from a Volume using the Marching Cells algorithm More...
 
class  MIRFilter
 Calculates and subdivides a mesh based on the material interface reconstruction algorithm. More...
 
class  Slice
 Intersect a mesh with an implicit surface. More...
 
class  SliceMultiple
 This filter can accept multiple implicit functions used by the slice filter. More...
 

Enumerations

enum  ContourDimension {
  ContourDimension::Auto, ContourDimension::All, ContourDimension::Polyhedra, ContourDimension::Polygons,
  ContourDimension::Lines
}
 Identifies what type cells will be contoured. More...
 

Enumeration Type Documentation

◆ ContourDimension

Identifies what type cells will be contoured.

The ContourDimension enum is used by the contour filters to specify which dimension of cell to contour by.

Enumerator
Auto 

Specifies an automatic selection of the input cell dimension.

This option first tries to contour polyhedra. If any polyhedra have the contour, that is used. Otherwise, it tries to contour polygons. If that fails, lines are contoured.

All 

Specifies a combination of all possible contours.

This option runs contour on all possible dimension types and then merges all contours together.

Polyhedra 

Specifies running contours on polyhedra.

This option runs contour on polyhedra, generating triangles.

Polygons 

Specifies running contours on polygons.

This option runs contour on polygons, generating lines.

Lines 

Specifies running contours on lines.

This option runs contour on lines, generating vertices.