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.
47 lines
1.5 KiB
47 lines
1.5 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkPSphereSource.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 vtkPSphereSource - sphere source that supports pieces
|
|
|
|
#ifndef __vtkPSphereSource_h
|
|
#define __vtkPSphereSource_h
|
|
|
|
#include "vtkSphereSource.h"
|
|
|
|
class VTK_PARALLEL_EXPORT vtkPSphereSource : public vtkSphereSource
|
|
{
|
|
public:
|
|
vtkTypeRevisionMacro(vtkPSphereSource,vtkSphereSource);
|
|
|
|
// Description:
|
|
// Construct sphere with radius=0.5 and default resolution 8 in both Phi
|
|
// and Theta directions. Theta ranges from (0,360) and phi (0,180) degrees.
|
|
static vtkPSphereSource *New();
|
|
virtual void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
// Description:
|
|
// Get the estimated memory size in 1024 bytes
|
|
unsigned long GetEstimatedMemorySize();
|
|
|
|
protected:
|
|
vtkPSphereSource() {};
|
|
~vtkPSphereSource() {};
|
|
|
|
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
|
private:
|
|
vtkPSphereSource(const vtkPSphereSource&); // Not implemented.
|
|
void operator=(const vtkPSphereSource&); // Not implemented.
|
|
};
|
|
|
|
#endif
|
|
|