operator * method

CubicCurve operator *(
  1. double operand
)

Multiplication operator.

Implementation

CubicCurve operator *(double operand) =>
    CubicCurve(point1 * operand, handle1 * operand, handle2 * operand, point2 * operand);