operator * method

Point operator *(
  1. double s
)

Implementation

Point operator *(double s) => Point(x * s, y * s);