Cubic.empty constructor

Cubic.empty(
  1. double x0,
  2. double y0
)

Generates an empty Cubic defined at (x0, y0).

Implementation

Cubic.empty(double x0, double y0)
    : this._raw([x0, y0, x0, y0, x0, y0, x0, y0]);