Coords<T extends num> class

Inheritance

Constructors

Coords(T x, T y)

Properties

hashCode int
The hash code for this object.
no setteroverride
key String
no setter
magnitude double
Get the straight line (Euclidean) distance between the origin (0, 0) and this point.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
x → T
finalinherited
y → T
finalinherited
z ↔ T
getter/setter pair

Methods

ceil() CustomPoint<T>
Create new CustomPoint whose x and y values are rounded up to int
inherited
distanceTo(Point<T> other) double
Returns the distance between this and other.
inherited
floor() CustomPoint<T>
Create new CustomPoint whose x and y values are rounded down to int
inherited
multiplyBy(num n) CustomPoint<num>
Create new CustomPoint with x and y multiplied by n
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
rotate(num radians) CustomPoint<num>
Create new CustomPoint whose x and y values are rotated by radians in clockwise fashion
inherited
round() CustomPoint<num>
Create new CustomPoint where x and y is rounded to int
inherited
scaleBy(CustomPoint<num> point) CustomPoint<num>
Create new CustomPoint where x and y are scaled by point values
inherited
squaredDistanceTo(Point<T> other) → T
Returns the squared distance between this and other.
inherited
toString() String
A string representation of this object.
override
unscaleBy(CustomPoint<T> point) CustomPoint<T>
Create new CustomPoint whose x and y values are divided by other point values
inherited
wrap(Tuple2<double, double>? wrapX, Tuple2<double, double>? wrapY) Coords<double>

Operators

operator *(num factor) CustomPoint<T>
Create new CustomPoint where x and y are multiplied by factor
inherited
operator +(Point<T> other) CustomPoint<T>
Create new CustomPoint where other point values x and y are added
inherited
operator -(Point<T> other) CustomPoint<T>
Create new CustomPoint where x and y values are subtracted from other point x and y values
inherited
operator /(num factor) CustomPoint<T>
Create new CustomPoint whose x and y values are divided by factor
inherited
operator ==(Object other) bool
Whether other is a point with the same coordinates as this point.
override