VTK  9.2.6
vtkParametricBohemianDome.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkParametricBohemianDome.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=========================================================================*/
32#ifndef vtkParametricBohemianDome_h
33#define vtkParametricBohemianDome_h
34
35#include "vtkCommonComputationalGeometryModule.h" // For export macro
37
38class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricBohemianDome : public vtkParametricFunction
39{
40public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
45
48 vtkGetMacro(A, double);
49 vtkSetMacro(A, double);
51
52 vtkGetMacro(B, double);
53 vtkSetMacro(B, double);
54
55 vtkGetMacro(C, double);
56 vtkSetMacro(C, double);
57
58 // (MinimumU, MaximumU) = (-pi, pi),
59 // (MinimumV, MaximumV) = (-pi, pi),
60 // JoinU = 1, JoinV = 1,
61 // TwistU = 0, TwistV = 0;
62 // ClockwiseOrdering = 0,
63 // DerivativesAvailable = 1,
65
69 int GetDimension() override { return 2; }
70
79 void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
80
85 double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
86
87protected:
90
91 // Variables
92 double A;
93 double B;
94 double C;
95
96private:
98 void operator=(const vtkParametricBohemianDome&) = delete;
99};
100
101#endif
a simple class to control print indentation
Definition vtkIndent.h:40
int GetDimension() override
Return the parametric dimension of the class.
double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override
Calculate a user defined scalar using one or all of uvw, Pt, Duvw.
~vtkParametricBohemianDome() override
static vtkParametricBohemianDome * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
BohemianDome surface.
abstract interface for parametric functions