bezier curve specified by control points More...
#include <bezier.h>
Public Member Functions | |
void | clear (void) throw () |
void | setFromPointsAndTangents (IN const point_t &q0, IN const point_t &t0, IN const point_t &q1, IN const point_t &t1) throw () |
void | dump (IN const char *title) const throw () |
Public Attributes | |
point_t | p0 |
point_t | p1 |
point_t | p2 |
point_t | p3 |
bezier curve specified by control points
a = (1 - t)
p(t) = a^3 p0 + 3 a^2 t p1 + 3 a t^2 p2 + t^3 p3
Definition at line 101 of file bezier.h.
void bezier::control_points_t::clear | ( | void | ) | throw () [inline] |