NAME
vtkSphere - implicit function for a sphere
SYNOPSIS
#include "/opt/vtk-c++/graphics/vtkSphere.h"
class VTK_EXPORT vtkSphere : public vtkImplicitFunction
vtkSphere();
static vtkSphere *New() {return new vtkSphere;};
const char *GetClassName() {return "vtkSphere";};
void PrintSelf(ostream& os, vtkIndent indent);
float EvaluateFunction(float x[3]);
void EvaluateGradient(float x[3], float n[3]);
void SetRadius(float);
float GetRadius();
void SetCenter(float, float, float);
void SetCenter(float *);
float *GetCenter();
void GetCenter(float data[3]);
DESCRIPTION
vtkSphere computes the implicit function and/or gradient for a sphere. vtkSphere is a concrete implementation of vtkImplicitFunction.