copy method

Bezier copy()

@return {!goog.math.Bezier} A copy of this curve.

Implementation

Bezier copy()
{
  return new Bezier(
      this.x0, this.y0, this.x1, this.y1, this.x2, this.y2, this.x3, this.y3);
}