operator * method

QuadraticCurve operator *(
  1. double operand
)

Multiplication operator.

Implementation

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