|
static CurveInfo | elipse (float a, float b, float begin, float end, unsigned int pointCount) |
| Build a CurveInfo that represents an elipse.
|
|
static CurveInfo | circle (float r, float begin, float end, unsigned int pointCount) |
| Build a CurveInfo that represents a circle.
|
|
static CurveInfo | sine (float a, float b, float begin, float end, unsigned int pointCount) |
| Build a CurveInfo that represents a sine.
|
|
static CurveInfo | cosine (float a, float b, float begin, float end, unsigned int pointCount) |
| Build a CurveInfo that represents a cosine.
|
|
static CurveInfo | astroid (float a, float begin, float end, unsigned int pointCount) |
| Build a CurveInfo that represents an astroid.
|
|
Holds all informations used to compute the points of a curve.
The curve's points are computed with f(p) where p is in the range [begin, end]. PointCount defines the "resolution" or "accuracy" of the computation.
- See Also
- Curve
Definition at line 54 of file Curve.hpp.