VTK  9.2.5
vtkSphere.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSphere.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=========================================================================*/
28#ifndef vtkSphere_h
29#define vtkSphere_h
30
31#include "vtkCommonDataModelModule.h" // For export macro
32#include "vtkImplicitFunction.h"
33
34class VTKCOMMONDATAMODEL_EXPORT vtkSphere : public vtkImplicitFunction
35{
36public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
43 static vtkSphere* New();
44
46
50 double EvaluateFunction(double x[3]) override;
52
56 void EvaluateGradient(double x[3], double n[3]) override;
57
59
62 vtkSetMacro(Radius, double);
63 vtkGetMacro(Radius, double);
65
67
70 vtkSetVector3Macro(Center, double);
71 vtkGetVectorMacro(Center, double, 3);
73
77 static double Evaluate(double center[3], double R, double x[3])
78 {
79 return (x[0] - center[0]) * (x[0] - center[0]) + (x[1] - center[1]) * (x[1] - center[1]) +
80 (x[2] - center[2]) * (x[2] - center[2]) - R * R;
81 }
82
84
93 float* pts, vtkIdType numPts, float sphere[4], vtkIdType hints[2]);
95 double* pts, vtkIdType numPts, double sphere[4], vtkIdType hints[2]);
97
99
108 float** spheres, vtkIdType numSpheres, float sphere[4], vtkIdType hints[2]);
110 double** spheres, vtkIdType numSpheres, double sphere[4], vtkIdType hints[2]);
112
113protected:
115 ~vtkSphere() override = default;
116
117 double Radius;
118 double Center[3];
119
120private:
121 vtkSphere(const vtkSphere&) = delete;
122 void operator=(const vtkSphere&) = delete;
123};
124
125#endif
abstract interface for implicit functions
virtual double EvaluateFunction(double x[3])=0
Evaluate function at position x-y-z and return value.
a simple class to control print indentation
Definition: vtkIndent.h:40
implicit function for a sphere
Definition: vtkSphere.h:35
void EvaluateGradient(double x[3], double n[3]) override
Evaluate sphere gradient.
static double Evaluate(double center[3], double R, double x[3])
Quick evaluation of the sphere equation ((x-x0)^2 + (y-y0)^2 + (z-z0)^2) - R^2.
Definition: vtkSphere.h:77
double Radius
Definition: vtkSphere.h:117
~vtkSphere() override=default
static void ComputeBoundingSphere(double **spheres, vtkIdType numSpheres, double sphere[4], vtkIdType hints[2])
Create a bounding sphere from a set of spheres.
static void ComputeBoundingSphere(double *pts, vtkIdType numPts, double sphere[4], vtkIdType hints[2])
Create a bounding sphere from a set of points.
double EvaluateFunction(double x[3]) override
Evaluate sphere equation ((x-x0)^2 + (y-y0)^2 + (z-z0)^2) - R^2.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkSphere * New()
Construct sphere with center at (0,0,0) and radius=0.5.
static void ComputeBoundingSphere(float *pts, vtkIdType numPts, float sphere[4], vtkIdType hints[2])
Create a bounding sphere from a set of points.
static void ComputeBoundingSphere(float **spheres, vtkIdType numSpheres, float sphere[4], vtkIdType hints[2])
Create a bounding sphere from a set of spheres.
int vtkIdType
Definition: vtkType.h:332