#include <vtkMCubesReader.h>
Inheritance diagram for vtkMCubesReader:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetFileName (const char *) |
virtual char * | GetFileName () |
virtual void | SetLimitsFileName (const char *) |
virtual char * | GetLimitsFileName () |
virtual void | SetFlipNormals (int) |
virtual int | GetFlipNormals () |
virtual void | FlipNormalsOn () |
virtual void | FlipNormalsOff () |
virtual void | SetNormals (int) |
virtual int | GetNormals () |
virtual void | NormalsOn () |
virtual void | NormalsOff () |
void | SetLocator (vtkPointLocator *locator) |
virtual vtkPointLocator * | GetLocator () |
void | CreateDefaultLocator () |
unsigned long | GetMTime () |
void | SetLocator (vtkPointLocator &locator) |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkMCubesReader * | SafeDownCast (vtkObject *o) |
vtkMCubesReader * | New () |
Protected Methods | |
vtkMCubesReader () | |
~vtkMCubesReader () | |
vtkMCubesReader (const vtkMCubesReader &) | |
void | operator= (const vtkMCubesReader &) |
void | Execute () |
Protected Attributes | |
char * | FileName |
char * | LimitsFileName |
vtkPointLocator * | Locator |
int | FlipNormals |
int | Normals |
vtkMCubesReader is a source object that reads binary marching cubes files. (Marching cubes is an isosurfacing technique that generates many triangles.) The binary format is supported by W. Lorensen's marching cubes program (and the vtkSliceCubes object). The format repeats point coordinates, so this object will merge the points with a vtkLocator object. You can choose to supply the vtkLocator or use the default.
|
Create default locator. Used to create one when none is specified. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataSource. |
|
Return the mtime also considering the locator. Reimplemented from vtkObject. |
|
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 vtkPolyDataSource. |
|
Return 1 if this class type 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 vtkPolyDataSource. |
|
Construct object with FlipNormals turned off and Normals set to true. Reimplemented from vtkPolyDataSource. |
|
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 vtkSource. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataSource. |
|
Specify file name of marching cubes file. |
|
Specify whether to flip normals in opposite direction. Flipping ONLY changes the direction of the normal vector. Contrast this with flipping in vtkPolyDataNormals which flips both the normal and the cell point order. |
|
Set / get the file name of the marching cubes limits file. |
|
For legacy compatibility. Do not use. |
|
Set / get a spatial locator for merging points. By default, an instance of vtkMergePoints is used. |
|
Specify whether to read normals. |