VTK  9.2.5
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 =========================================================================*/
139 #ifndef vtkCubeSource_h
140 #define vtkCubeSource_h
141 
142 #include "vtkFiltersSourcesModule.h" // For export macro
143 #include "vtkPolyDataAlgorithm.h"
144 
145 class VTKFILTERSSOURCES_EXPORT vtkCubeSource : public vtkPolyDataAlgorithm
146 {
147 public:
148  static vtkCubeSource* New();
150  void PrintSelf(ostream& os, vtkIndent indent) override;
151 
153 
156  vtkSetClampMacro(XLength, double, 0.0, VTK_DOUBLE_MAX);
157  vtkGetMacro(XLength, double);
159 
161 
164  vtkSetClampMacro(YLength, double, 0.0, VTK_DOUBLE_MAX);
165  vtkGetMacro(YLength, double);
167 
169 
172  vtkSetClampMacro(ZLength, double, 0.0, VTK_DOUBLE_MAX);
173  vtkGetMacro(ZLength, double);
175 
177 
180  vtkSetVector3Macro(Center, double);
181  vtkGetVectorMacro(Center, double, 3);
183 
185 
188  void SetBounds(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax);
189  void SetBounds(const double bounds[6]);
190  void GetBounds(double bounds[6]);
192 
194 
199  vtkSetMacro(OutputPointsPrecision, int);
200  vtkGetMacro(OutputPointsPrecision, int);
202 
203 protected:
204  vtkCubeSource(double xL = 1.0, double yL = 1.0, double zL = 1.0);
205  ~vtkCubeSource() override = default;
206 
208  double XLength;
209  double YLength;
210  double ZLength;
211  double Center[3];
213 
214 private:
215  vtkCubeSource(const vtkCubeSource&) = delete;
216  void operator=(const vtkCubeSource&) = delete;
217 };
218 
219 #endif
create a polygonal representation of a cube
~vtkCubeSource() override=default
void GetBounds(double bounds[6])
Convenience methods allows creation of cube by specifying bounding box.
int OutputPointsPrecision
vtkCubeSource(double xL=1.0, double yL=1.0, double zL=1.0)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetBounds(const double bounds[6])
Convenience methods allows creation of cube by specifying bounding box.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkCubeSource * New()
void SetBounds(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
Convenience methods allows creation of cube by specifying bounding box.
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
#define VTK_DOUBLE_MAX
Definition: vtkType.h:165