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
35 #include "vtkParametricFunction.h"
36 
37 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricBohemianDome : public vtkParametricFunction
38 {
39 public:
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 
87 protected:
89  ~vtkParametricBohemianDome() VTK_OVERRIDE;
90 
91  // Variables
92  double A;
93  double B;
94  double C;
95 
96 private:
97  vtkParametricBohemianDome(const vtkParametricBohemianDome&) VTK_DELETE_FUNCTION;
98  void operator=(const vtkParametricBohemianDome&) VTK_DELETE_FUNCTION;
99 };
100 
101 #endif
virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9])=0
Calculate a user defined scalar using one or all of uvw, Pt, Duvw.
virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9])=0
Performs the mapping $f(uvw)->(Pt,Duvw)$f.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int GetDimension() override
Return the parametric dimension of the class.
abstract interface for parametric functions
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Generate a Bohemian dome.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...