17#ifndef vtkCellGridElevation_h
18#define vtkCellGridElevation_h
21#include "vtkFiltersCellGridModule.h"
24VTK_ABI_NAMESPACE_BEGIN
37 vtkSetStringMacro(AttributeName);
38 vtkGetStringMacro(AttributeName);
41 vtkSetVector3Macro(Origin,
double);
42 vtkGetVector3Macro(Origin,
double);
57 vtkSetClampMacro(NumberOfAxes,
int, 1, 3);
58 vtkGetMacro(NumberOfAxes,
int);
62 vtkSetVector3Macro(Axis,
double);
63 vtkGetVector3Macro(Axis,
double);
70 vtkSetMacro(Shock,
double);
71 vtkGetMacro(Shock,
double);
81 double Origin[3] = { 0., 0., 0 };
82 double Axis[3] = { 0., 0., 1. };
84 int NumberOfAxes{ 1 };
85 char* AttributeName{
nullptr };
Superclass for algorithms that produce only polydata as output.
A cell-grid query for creating an "elevation" field.
Adds a cell attribute representing elevation.
vtkCellGridElevation()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *ouInfo) override
This is called by the superclass.
vtkNew< vtkCellGridElevationQuery > Request
~vtkCellGridElevation() override=default
static vtkCellGridElevation * New()
a simple class to control print indentation
Allocate and hold a VTK object.