cubic method

void cubic(
  1. Vec2D b,
  2. Vec2D c,
  3. Vec2D d
)

Implementation

void cubic(Vec2D b, Vec2D c, Vec2D d) {
  cubicTo(b.x, b.y, c.x, c.y, d.x, d.y);
}