Define a curved edge that is parameterized for 0<lambda<1 between the start and end point. More...
Define a curved edge that is parameterized for 0<lambda<1 between the start and end point.
Definition at line 54 of file curvedEdge.H.
Public Member Functions | |
TypeName ("curvedEdge") | |
Runtime type information.
| |
declareRunTimeSelectionTable (autoPtr, curvedEdge, Istream,(const pointField &points, Istream &is),(points, is)) | |
curvedEdge (const pointField &points, const label start, const label end) | |
Construct from components.
| |
curvedEdge (const pointField &, Istream &) | |
Construct from Istream setting pointsList.
| |
curvedEdge (const curvedEdge &) | |
Copy construct.
| |
virtual autoPtr< curvedEdge > | clone () const |
Clone function.
| |
virtual | ~curvedEdge () |
label | start () const |
Return label of start point.
| |
label | end () const |
Return label of end point.
| |
int | compare (const curvedEdge &) const |
Compare the given start and end points with this curve.
| |
int | compare (const edge &) const |
Compare the given start and end points with this curve.
| |
int | compare (const label start, const label end) const |
Compare the given start and end points with this curve.
| |
virtual point | position (const scalar) const =0 |
Return the point position corresponding to the curve parameter.
| |
virtual scalar | length () const =0 |
Return the length of the curve.
| |
void | operator= (const curvedEdge &) |
Static Public Member Functions | |
static autoPtr< curvedEdge > | New (const pointField &, Istream &) |
New function which constructs and returns pointer to a curvedEdge.
| |
Static Protected Member Functions | |
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.
| |
Protected Attributes | |
const pointField & | points_ |
const label | start_ |
const label | end_ |
Friends | |
Ostream & | operator<< (Ostream &, const curvedEdge &) |
curvedEdge | ( | const pointField & | points, |
const label | start, | ||
const label | end | ||
) |
Construct from components.
curvedEdge | ( | const pointField & | , |
Istream & | |||
) |
Construct from Istream setting pointsList.
curvedEdge | ( | const curvedEdge & | ) |
Copy construct.
virtual ~curvedEdge | ( | ) | [inline, virtual]
|
Definition at line 122 of file curvedEdge.H.
static pointField appendEndPoints | ( | const pointField & | , |
const label | start, | ||
const label | end, | ||
const pointField & | otherKnots | ||
) | [static, protected]
|
Return a complete point field by appending the start/end points.
to the given list
TypeName | ( | "curvedEdge" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | autoPtr | , |
curvedEdge | , | ||
Istream | , | ||
(const pointField &points, Istream &is) | , | ||
(points, is) | |||
) |
virtual autoPtr<curvedEdge> clone | ( | ) | const [virtual]
|
Clone function.
static autoPtr<curvedEdge> New | ( | const pointField & | , |
Istream & | |||
) | [static]
|
New function which constructs and returns pointer to a curvedEdge.
Foam::label start | ( | ) | const [inline]
|
Return label of start point.
Definition at line 28 of file curvedEdgeI.H.
References curvedEdge::start_.
Referenced by curvedEdge::compare().
Foam::label end | ( | ) | const [inline]
|
Return label of end point.
Definition at line 34 of file curvedEdgeI.H.
Referenced by curvedEdge::compare().
int compare | ( | const curvedEdge & | e ) | const [inline]
|
Compare the given start and end points with this curve.
+1: identical
Definition at line 57 of file curvedEdgeI.H.
References curvedEdge::end(), and curvedEdge::start().
Referenced by curvedEdge::compare().
int compare | ( | const edge & | e ) | const [inline]
|
Compare the given start and end points with this curve.
+1: identical
Definition at line 63 of file curvedEdgeI.H.
References curvedEdge::compare(), edge::end(), and edge::start().
int compare | ( | const label | start, |
const label | end | ||
) | const [inline]
|
Compare the given start and end points with this curve.
+1: identical
Definition at line 40 of file curvedEdgeI.H.
virtual point position | ( | const | scalar ) | const [pure virtual]
|
Return the point position corresponding to the curve parameter.
0 <= lambda <= 1
Implemented in arcEdge, lineEdge, polyLineEdge, and splineEdge.
virtual scalar length | ( | ) | const [pure virtual]
|
Return the length of the curve.
Implemented in arcEdge, lineEdge, polyLineEdge, and splineEdge.
void operator= | ( | const curvedEdge & | ) |
Ostream& operator<< | ( | Ostream & | , |
const curvedEdge & | |||
) | [friend]
|
const pointField& points_ [protected]
|
Definition at line 60 of file curvedEdge.H.
const label start_ [protected]
|
Definition at line 61 of file curvedEdge.H.
Referenced by curvedEdge::start().
const label end_ [protected]
|
Definition at line 62 of file curvedEdge.H.