copy method
@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);
}
@return {!goog.math.Bezier} A copy of this curve.
Bezier copy()
{
return new Bezier(
this.x0, this.y0, this.x1, this.y1, this.x2, this.y2, this.x3, this.y3);
}