To store and treat an ellipsoidal figure. More...
#include <Figure.h>
Public Member Functions | |
| Ellipse () | |
| Default constructor. | |
| Ellipse (Point< real_t > c, real_t a, real_t b, int code=1) | |
| Constructor with given ellipse data. | |
| real_t | getSignedDistance (const Point< real_t > &p) const |
| Return signed distance of a given point from the current ellipse. | |
| Ellipse & | operator+= (Point< real_t > a) |
Operator += | |
| Ellipse & | operator+= (real_t a) |
Operator *= | |
| void | getSignedDistance (const Grid &g, Vect< real_t > &d) const |
| Calculate signed distance to current figure with respect to grid points. | |
Public Member Functions inherited from Figure | |
| Figure () | |
| Default constructor. | |
| Figure (const Figure &f) | |
| Copy constructor. | |
| virtual | ~Figure () |
| Destructor. | |
| void | setCode (int code) |
| Choose a code for the domain defined by the figure. | |
| Figure & | operator= (const Figure &f) |
| Operator =. | |
| void | getSignedDistance (const Grid &g, Vect< real_t > &d) const |
| Calculate signed distance to current figure with respect to grid points. | |
| real_t | dLine (const Point< real_t > &p, const Point< real_t > &a, const Point< real_t > &b) const |
| Compute signed distance from a line. | |
To store and treat an ellipsoidal figure.
| Ellipse | ( | ) |
Default constructor.
Constructs an ellipse with semimajor axis = 1, and semiminor axis = 1
Constructor with given ellipse data.
| [in] | c | Coordinates of center |
| [in] | a | Semimajor axis |
| [in] | b | Semiminor axis |
| [in] | code | Code to assign to the generated figure [Default: 1] |
|
virtual |
Return signed distance of a given point from the current ellipse.
The computed distance is negative if p lies in the ellipse, positive if it is outside, and 0 on its boundary
| [in] | p | Point<double> instance |
Reimplemented from Figure.
Operator +=
Translate ellipse by a vector a
| [in] | a | Vector defining the translation |
| Ellipse & operator+= | ( | real_t | a | ) |
Operator *=
Scale ellipse by a factor a
| [in] | a | Scaling value |