A utility class for representing two-dimensional positions.
Constructors
- Point(T x, T y)
-
const
Properties
Operators
-
operator *(
num factor) → Point<T> -
Scale this point by
factor
as if it were a vector. -
operator +(
Point<T> other) → Point<T> -
Add
other
tothis
, as if both points were vectors. -
operator -(
Point<T> other) → Point<T> -
Subtract
other
fromthis
, as if both points were vectors. -
operator ==(
other) → bool -
A
Point
is only equal to anotherPoint
with the same coordinates.
Methods
-
distanceTo(
Point<T> other) → double -
Returns the distance between
this
andother
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited -
squaredDistanceTo(
Point<T> other) → T -
Returns the squared distance between
this
andother
. -
toString(
) → String -
Returns a string representation of this object.