VTK
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=========================================================================*/
31#ifndef vtkParametricBohemianDome_h
32#define vtkParametricBohemianDome_h
33
34#include "vtkCommonComputationalGeometryModule.h" // For export macro
36
37class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricBohemianDome : public vtkParametricFunction
38{
39public:
40
42 void PrintSelf(ostream& os, vtkIndent indent) VTK_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 = 1,
63 // DerivativesAvailable = 1,
65
69 int GetDimension() VTK_OVERRIDE {return 2;}
70
79 void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) VTK_OVERRIDE;
80
85 double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) VTK_OVERRIDE;
86
87protected:
90
91 // Variables
92 double A;
93 double B;
94 double C;
95
96private:
97 vtkParametricBohemianDome(const vtkParametricBohemianDome&) VTK_DELETE_FUNCTION;
98 void operator=(const vtkParametricBohemianDome&) VTK_DELETE_FUNCTION;
99};
100
101#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
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
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.