Point constructor

Point(
  1. double x,
  2. double y, [
  3. bool? round
])

Creates a Point object with the given x and y coordinates. If optional round is set to true, rounds the x and y values.

Implementation

external Point(double x, double y, [bool? round]);