VTK  9.3.0
vtkParametricPluckerConoid.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
31#ifndef vtkParametricPluckerConoid_h
32#define vtkParametricPluckerConoid_h
33
34#include "vtkCommonComputationalGeometryModule.h" // For export macro
36
37VTK_ABI_NAMESPACE_BEGIN
38class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricPluckerConoid
40{
41public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
46
49 vtkGetMacro(N, int);
50 vtkSetMacro(N, int);
52
63
67 int GetDimension() override { return 2; }
68
77 void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
78
83 double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
84
85protected:
88
89 // Variables
90 int N;
91
92private:
94 void operator=(const vtkParametricPluckerConoid&) = delete;
95};
96
97VTK_ABI_NAMESPACE_END
98#endif
a simple class to control print indentation
Definition vtkIndent.h:38
abstract interface for parametric functions
Generate Plucker's conoid surface.
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.
static vtkParametricPluckerConoid * New()
Construct Plucker's conoid surface with the following parameters: (MinimumU, MaximumU) = (0....
void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
Plucker's conoid surface.
~vtkParametricPluckerConoid() override
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.