Straight 1D line in 2D space. More...
Public Member Functions | |
| MyStraightLine (const Vector< double > &r_start, const Vector< double > &r_end) | |
| Constructor: Pass start and end points. | |
| MyStraightLine (const MyStraightLine &dummy) | |
| Broken copy constructor. | |
| void | operator= (const MyStraightLine &) |
| Broken assignment operator. | |
| ~MyStraightLine () | |
| Destructor: Empty. | |
| void | position (const Vector< double > &zeta, Vector< double > &r) const |
| Position Vector at Lagrangian coordinate zeta. | |
Private Attributes | |
| Vector< double > | R_start |
| Start point of line. | |
| Vector< double > | R_end |
| End point of line. | |
Straight 1D line in 2D space.
Definition at line 52 of file unstructured_acoustic_fsi.cc.
|
inline |
Constructor: Pass start and end points.
Definition at line 58 of file unstructured_acoustic_fsi.cc.
|
inline |
Broken copy constructor.
Definition at line 64 of file unstructured_acoustic_fsi.cc.
|
inline |
Destructor: Empty.
Definition at line 77 of file unstructured_acoustic_fsi.cc.
|
inline |
Broken assignment operator.
Definition at line 70 of file unstructured_acoustic_fsi.cc.
|
inline |
Position Vector at Lagrangian coordinate zeta.
Definition at line 80 of file unstructured_acoustic_fsi.cc.
|
private |
End point of line.
Definition at line 93 of file unstructured_acoustic_fsi.cc.
Referenced by position().
|
private |
Start point of line.
Definition at line 90 of file unstructured_acoustic_fsi.cc.
Referenced by position().