Point<T extends num> constructor
- T x,
- T y
Creates a point with the provided x
and y
coordinates.
Implementation
const Point(T x, T y)
: this.x = x,
this.y = y;
Creates a point with the provided x
and y
coordinates.
const Point(T x, T y)
: this.x = x,
this.y = y;