24#ifndef vtkLinearCellExtrusionFilter_h 
   25#define vtkLinearCellExtrusionFilter_h 
   27#include "vtkFiltersModelingModule.h"    
   32VTK_ABI_NAMESPACE_BEGIN
 
   45  vtkSetMacro(ScaleFactor, 
double);
 
   46  vtkGetMacro(ScaleFactor, 
double);
 
   54  vtkSetMacro(UseUserVector, 
bool);
 
   55  vtkGetMacro(UseUserVector, 
bool);
 
   56  vtkBooleanMacro(UseUserVector, 
bool);
 
   63  vtkSetVector3Macro(UserVector, 
double);
 
   64  vtkGetVector3Macro(UserVector, 
double);
 
   72  vtkSetMacro(MergeDuplicatePoints, 
bool);
 
   73  vtkGetMacro(MergeDuplicatePoints, 
bool);
 
   74  vtkBooleanMacro(MergeDuplicatePoints, 
bool);
 
  100  double ScaleFactor = 1.0;
 
  101  double UserVector[3] = { 0.0, 0.0, 1.0 };
 
  102  bool UseUserVector = 
false;
 
  103  bool MergeDuplicatePoints = 
false;
 
Abstract class in support of both point location and point insertion.
 
a simple class to control print indentation
 
extrude polygonal data to create 3D cells from 2D cells
 
vtkSmartPointer< vtkIncrementalPointLocator > Locator
 
static vtkLinearCellExtrusionFilter * New()
 
vtkSetSmartPointerMacro(Locator, vtkIncrementalPointLocator)
Specify a spatial locator for merging points.
 
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
 
void CreateDefaultLocator()
Create default locator.
 
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
 
vtkGetSmartPointerMacro(Locator, vtkIncrementalPointLocator)
Specify a spatial locator for merging points.
 
~vtkLinearCellExtrusionFilter() override=default
 
vtkLinearCellExtrusionFilter()
 
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
 
Superclass for algorithms that produce only polydata as output.
 
Hold a reference to a vtkObjectBase instance.