A blockEdge interface for Catmull-Rom splines. More...


Public Member Functions | |
| TypeName ("spline") | |
| Runtime type information. More... | |
| splineEdge (const pointField &, const label start, const label end, const pointField &internalPoints) | |
| Construct from components. More... | |
| splineEdge (const dictionary &dict, const label index, const searchableSurfaceList &geometry, const pointField &, Istream &) | |
| Construct from Istream, setting pointsList. More... | |
| splineEdge (const splineEdge &)=delete | |
| Disallow default bitwise copy construction. More... | |
| virtual | ~splineEdge () |
| Destructor. More... | |
| virtual point | position (const scalar) const |
| Return the point position corresponding to the curve parameter. More... | |
| virtual scalar | length () const |
| Return the length of the spline curve (not implemented) More... | |
| void | operator= (const splineEdge &)=delete |
| Disallow default bitwise assignment. More... | |
Public Member Functions inherited from blockEdge | |
| TypeName ("blockEdge") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, blockEdge, Istream,(const dictionary &dict, const label index, const searchableSurfaceList &geometry, const pointField &points, Istream &is),(dict, index, geometry, points, is)) | |
| blockEdge (const pointField &points, const label start, const label end) | |
| Construct from components. More... | |
| blockEdge (const dictionary &dict, const label index, const pointField &, Istream &) | |
| Construct from Istream setting pointsList. More... | |
| virtual autoPtr< blockEdge > | clone () const |
| Clone function. More... | |
| virtual | ~blockEdge () |
| Destructor. More... | |
| label | start () const |
| Return label of start point. More... | |
| label | end () const |
| Return label of end point. More... | |
| int | compare (const blockEdge &) const |
| Compare the given start and end points with this curve. More... | |
| int | compare (const edge &) const |
| Compare the given start and end points with this curve. More... | |
| int | compare (const label start, const label end) const |
| Compare the given start and end points with this curve. More... | |
| virtual tmp< pointField > | position (const scalarList &) const |
| Return the point positions corresponding to the curve parameters. More... | |
| void | write (Ostream &, const dictionary &) const |
| Write edge with variable backsubstitution. More... | |
Public Member Functions inherited from CatmullRomSpline | |
| point | position (const label segmenti, const scalar segmentLambda) const |
| Return the point position corresponding to the segment parameter. More... | |
| Spline (const pointField &knots, const scalar tol, const label nIter) | |
| Inherit constructors. More... | |
| Spline (const pointField &knots) | |
| Inherit constructors. More... | |
| Spline (const Spline &)=delete | |
| Inherit constructors. More... | |
Public Member Functions inherited from Spline< CatmullRomSpline > | |
| Spline (const pointField &knots, const scalar tol, const label nIter) | |
| Construct from components. More... | |
| Spline (const pointField &knots) | |
| Construct from knots with default iteration settings. More... | |
| Spline (const Spline &)=delete | |
| Disallow default bitwise copy construction. More... | |
| label | nSegments () const |
| Return the number of segments. More... | |
| const point & | start () const |
| Return the start point. More... | |
| const point & | end () const |
| Return the end point. More... | |
| point | position (const scalar lambda) const |
| Return the point position corresponding to the curve parameter. More... | |
| tmp< pointField > | position (const scalarList &lambdas) const |
| Return the point positions corresponding to the curve parameters. More... | |
| void | operator= (const Spline &)=delete |
| Disallow default bitwise assignment. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from blockEdge | |
| static autoPtr< blockEdge > | New (const dictionary &dict, const label index, const searchableSurfaceList &geometry, const pointField &, Istream &) |
| New function which constructs and returns pointer to a blockEdge. More... | |
Protected Member Functions inherited from Spline< CatmullRomSpline > | |
| const pointField & | knots () const |
| Access the end points and control points. More... | |
Static Protected Member Functions inherited from blockEdge | |
| static pointField | appendEndPoints (const pointField &, const label start, const label end, const pointField &otherKnots) |
| Return a complete point field by appending the start/end points. More... | |
Protected Attributes inherited from blockEdge | |
| const pointField & | points_ |
| const label | start_ |
| const label | end_ |
A blockEdge interface for Catmull-Rom splines.
Definition at line 51 of file splineEdge.H.
| splineEdge | ( | const pointField & | points, |
| const label | start, | ||
| const label | end, | ||
| const pointField & | internalPoints | ||
| ) |
Construct from components.
Definition at line 50 of file splineEdge.C.
| splineEdge | ( | const dictionary & | dict, |
| const label | index, | ||
| const searchableSurfaceList & | geometry, | ||
| const pointField & | points, | ||
| Istream & | is | ||
| ) |
Construct from Istream, setting pointsList.
Definition at line 63 of file splineEdge.C.
References token::BEGIN_LIST, and Istream::putBack().

|
delete |
Disallow default bitwise copy construction.
|
virtual |
Destructor.
Definition at line 89 of file splineEdge.C.
| TypeName | ( | "spline" | ) |
Runtime type information.
|
virtual |
Return the point position corresponding to the curve parameter.
0 <= lambda <= 1
Implements blockEdge.
Definition at line 95 of file splineEdge.C.
References Foam::constant::physicoChemical::mu, and CatmullRomSpline::position().

|
virtual |
Return the length of the spline curve (not implemented)
Implements blockEdge.
Definition at line 101 of file splineEdge.C.
References NotImplemented.
|
delete |
Disallow default bitwise assignment.