Efficient batch evaluator for 2D parabola grid points.
More...
#include <Geom2dGridEval_Parabola.hxx>
Efficient batch evaluator for 2D parabola grid points.
Uses analytical formula: P(u) = Center + (u^2 / (4*Focal)) * XDir + u * YDir
Usage:
Efficient batch evaluator for 2D parabola grid points.
Definition Geom2dGridEval_Parabola.hxx:34
STL input iterator that wraps an OCCT More()/Next() iterator.
Definition NCollection_ForwardRange.hxx:142
◆ Geom2dGridEval_Parabola() [1/3]
Constructor with geometry.
- Parameters
-
| theParabola | the 2D parabola geometry to evaluate |
◆ Geom2dGridEval_Parabola() [2/3]
Non-copyable and non-movable.
◆ Geom2dGridEval_Parabola() [3/3]
◆ EvaluateGrid()
Evaluate all grid points.
- Parameters
-
| theParams | array of parameter values |
- Returns
- array of evaluated points (1-based indexing), or empty array if geometry is null or no parameters
◆ EvaluateGridD1()
Evaluate all grid points with first derivative.
- Parameters
-
| theParams | array of parameter values |
- Returns
- array of CurveD1 (1-based indexing)
◆ EvaluateGridD2()
Evaluate all grid points with first and second derivatives.
- Parameters
-
| theParams | array of parameter values |
- Returns
- array of CurveD2 (1-based indexing)
◆ EvaluateGridD3()
Evaluate all grid points with first, second, and third derivatives.
- Parameters
-
| theParams | array of parameter values |
- Returns
- array of CurveD3 (1-based indexing)
◆ EvaluateGridDN()
Evaluate Nth derivative at all grid points. Parabola: P = Center + (u^2/4F) * X + u * Y D1 = (u/2F) * X + Y (depends on u) D2 = (1/2F) * X (constant) DN = 0 for N >= 3.
- Parameters
-
| theParams | array of parameter values |
| theN | derivative order (N >= 1) |
- Returns
- array of derivative vectors (1-based indexing)
◆ Geometry()
Returns the geometry handle.
◆ operator=() [1/2]
◆ operator=() [2/2]
The documentation for this class was generated from the following file: