VTK  9.1.0
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=========================================================================*/
29#ifndef vtkParametricBohemianDome_h
30#define vtkParametricBohemianDome_h
31
32#include "vtkCommonComputationalGeometryModule.h" // For export macro
34
35class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricBohemianDome : public vtkParametricFunction
36{
37public:
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40
42
45 vtkGetMacro(A, double);
46 vtkSetMacro(A, double);
48
49 vtkGetMacro(B, double);
50 vtkSetMacro(B, double);
51
52 vtkGetMacro(C, double);
53 vtkSetMacro(C, double);
54
55 // (MinimumU, MaximumU) = (-pi, pi),
56 // (MinimumV, MaximumV) = (-pi, pi),
57 // JoinU = 1, JoinV = 1,
58 // TwistU = 0, TwistV = 0;
59 // ClockwiseOrdering = 0,
60 // DerivativesAvailable = 1,
62
66 int GetDimension() override { return 2; }
67
76 void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
77
82 double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
83
84protected:
87
88 // Variables
89 double A;
90 double B;
91 double C;
92
93private:
95 void operator=(const vtkParametricBohemianDome&) = delete;
96};
97
98#endif
a simple class to control print indentation
Definition: vtkIndent.h:34
Generate a Bohemian dome.
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