You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.4 KiB
80 lines
2.4 KiB
2 years ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: $RCSfile: vtkCylinderSource.h,v $
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
// .NAME vtkCylinderSource - generate a cylinder centered at origin
|
||
|
// .SECTION Description
|
||
|
// vtkCylinderSource creates a polygonal cylinder centered at Center;
|
||
|
// The axis of the cylinder is aligned along the global y-axis.
|
||
|
// The height and radius of the cylinder can be specified, as well as the
|
||
|
// number of sides. It is also possible to control whether the cylinder is
|
||
|
// open-ended or capped.
|
||
|
|
||
|
#ifndef __vtkCylinderSource_h
|
||
|
#define __vtkCylinderSource_h
|
||
|
|
||
|
#include "vtkPolyDataAlgorithm.h"
|
||
|
|
||
|
#include "vtkCell.h" // Needed for VTK_CELL_SIZE
|
||
|
|
||
|
class VTK_GRAPHICS_EXPORT vtkCylinderSource : public vtkPolyDataAlgorithm
|
||
|
{
|
||
|
public:
|
||
|
static vtkCylinderSource *New();
|
||
|
vtkTypeRevisionMacro(vtkCylinderSource,vtkPolyDataAlgorithm);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
||
|
// Description:
|
||
|
// Set the height of the cylinder.
|
||
|
vtkSetClampMacro(Height,double,0.0,VTK_DOUBLE_MAX)
|
||
|
vtkGetMacro(Height,double);
|
||
|
|
||
|
// Description:
|
||
|
// Set the radius of the cylinder.
|
||
|
vtkSetClampMacro(Radius,double,0.0,VTK_DOUBLE_MAX)
|
||
|
vtkGetMacro(Radius,double);
|
||
|
|
||
|
// Description:
|
||
|
// Set/Get cylinder center
|
||
|
vtkSetVector3Macro(Center,double);
|
||
|
vtkGetVectorMacro(Center,double,3);
|
||
|
|
||
|
// Description:
|
||
|
// Set the number of facets used to define cylinder.
|
||
|
vtkSetClampMacro(Resolution,int,2,VTK_CELL_SIZE)
|
||
|
vtkGetMacro(Resolution,int);
|
||
|
|
||
|
// Description:
|
||
|
// Turn on/off whether to cap cylinder with polygons.
|
||
|
vtkSetMacro(Capping,int);
|
||
|
vtkGetMacro(Capping,int);
|
||
|
vtkBooleanMacro(Capping,int);
|
||
|
|
||
|
protected:
|
||
|
vtkCylinderSource(int res=6);
|
||
|
~vtkCylinderSource() {};
|
||
|
|
||
|
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
||
|
double Height;
|
||
|
double Radius;
|
||
|
double Center[3];
|
||
|
int Resolution;
|
||
|
int Capping;
|
||
|
|
||
|
private:
|
||
|
vtkCylinderSource(const vtkCylinderSource&); // Not implemented.
|
||
|
void operator=(const vtkCylinderSource&); // Not implemented.
|
||
|
};
|
||
|
|
||
|
#endif
|