operator / method

QuadraticCurve operator /(
  1. double operand
)

Division operator.

Implementation

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