Man Page for vtkExtractGeometry
Table of Contents

NAME

vtkExtractGeometry - extract cells that lie either entirely inside or outside of a specified implicit function

SYNOPSIS


#include "/opt/vtk-c++/graphics/vtkExtractGeometry.h"

class VTK_EXPORT vtkExtractGeometry : public vtkDataSetToUnstructuredGridFilter

vtkExtractGeometry(vtkImplicitFunction *f=NULL);
static vtkExtractGeometry *New() {return new vtkExtractGeometry;};
const char *GetClassName() {return "vtkExtractGeometry";};
void PrintSelf(ostream& os, vtkIndent indent);
unsigned long int GetMTime();
void SetImplicitFunction(vtkImplicitFunction*);
void SetImplicitFunction(vtkImplicitFunction& );
vtkImplicitFunction *GetImplicitFunction();
void SetExtractInside(int);
int GetExtractInside();
void ExtractInsideOn();
void ExtractInsideOff();

DESCRIPTION

vtkExtractGeometry extracts from its input dataset all cells that are either completely inside or outside of a specified implicit function. Any type of dataset can be input to this filter. On output the filter generates an unstructured grid.

SEE ALSO

vtkGeometryFilter vtkExtractVOI

SUMMARY

void SetImplicitFunction(vtkImplicitFunction*)
void SetImplicitFunction(vtkImplicitFunction& )
Specify the implicit function for inside/outside checks.

void SetExtractInside(int)
Boolean controls whether to extract cells that are inside of implicit function (ExtractInside == 1) or outside of implicit function (ExtractInside == 0).

vtkExtractGeometry(vtkImplicitFunction *f)
Construct object with ExtractInside turned on.

unsigned long GetMTime()
Overload standard modified time function. If implicit function is modified, then this object is modified as well.


Table of Contents