VTK
vtkParametricCrossCap.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricCrossCap.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 =========================================================================*/
36 #ifndef vtkParametricCrossCap_h
37 #define vtkParametricCrossCap_h
38 
39 #include "vtkCommonComputationalGeometryModule.h" // For export macro
40 #include "vtkParametricFunction.h"
41 
42 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricCrossCap :
44 {
45  public:
46 
48  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
60 
64  int GetDimension() override {return 2;}
65 
74  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
75 
89  double EvaluateScalar(double uvw[3], double Pt[3],
90  double Duvw[9]) override;
91 
92  protected:
95 
96  private:
98  void operator=(const vtkParametricCrossCap&) = delete;
99 };
100 
101 #endif
vtkParametricCrossCap::GetDimension
int GetDimension() override
Return the parametric dimension of the class.
Definition: vtkParametricCrossCap.h:64
vtkParametricCrossCap::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkParametricCrossCap::New
static vtkParametricCrossCap * New()
Construct a cross-cap with the following parameters: MinimumU = 0, MaximumU = Pi, MinimumV = 0,...
vtkParametricFunction
abstract interface for parametric functions
Definition: vtkParametricFunction.h:63
vtkParametricCrossCap::~vtkParametricCrossCap
~vtkParametricCrossCap() override
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkParametricFunction.h
vtkParametricCrossCap::EvaluateScalar
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.
vtkParametricCrossCap::Evaluate
void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
A cross-cap.
vtkParametricCrossCap
Generate a cross-cap.
Definition: vtkParametricCrossCap.h:44
vtkParametricCrossCap::vtkParametricCrossCap
vtkParametricCrossCap()