VTK
vtkCubeSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCubeSource.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
24 #ifndef vtkCubeSource_h
25 #define vtkCubeSource_h
26 
27 #include "vtkFiltersSourcesModule.h" // For export macro
28 #include "vtkPolyDataAlgorithm.h"
29 
30 class VTKFILTERSSOURCES_EXPORT vtkCubeSource : public vtkPolyDataAlgorithm
31 {
32 public:
33  static vtkCubeSource *New();
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
38 
41  vtkSetClampMacro(XLength,double,0.0,VTK_DOUBLE_MAX);
42  vtkGetMacro(XLength,double);
44 
46 
49  vtkSetClampMacro(YLength,double,0.0,VTK_DOUBLE_MAX);
50  vtkGetMacro(YLength,double);
52 
54 
57  vtkSetClampMacro(ZLength,double,0.0,VTK_DOUBLE_MAX);
58  vtkGetMacro(ZLength,double);
60 
62 
65  vtkSetVector3Macro(Center,double);
66  vtkGetVectorMacro(Center,double,3);
68 
70 
73  void SetBounds(double xMin, double xMax,
74  double yMin, double yMax,
75  double zMin, double zMax);
76  void SetBounds(const double bounds[6]);
78 
80 
85  vtkSetMacro(OutputPointsPrecision,int);
86  vtkGetMacro(OutputPointsPrecision,int);
88 
89 protected:
90  vtkCubeSource(double xL=1.0, double yL=1.0, double zL=1.0);
91  ~vtkCubeSource() override {}
92 
94  double XLength;
95  double YLength;
96  double ZLength;
97  double Center[3];
99 private:
100  vtkCubeSource(const vtkCubeSource&) = delete;
101  void operator=(const vtkCubeSource&) = delete;
102 };
103 
104 #endif
#define VTK_DOUBLE_MAX
Definition: vtkType.h:167
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkPolyDataAlgorithm * New()
create a polygonal representation of a cube
Definition: vtkCubeSource.h:30
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:33
int OutputPointsPrecision
Definition: vtkCubeSource.h:98
Store zero or more vtkInformation instances.
~vtkCubeSource() override
Definition: vtkCubeSource.h:91
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.