TileIdentity class

Inheritance

Constructors

TileIdentity(int z, int x, int y)

Properties

hashCode int
The hash code for this object.
no setteroverride
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 int
finalinherited
y int
finalinherited
z int
final

Methods

ceil() → CustomPoint<int>
Create new CustomPoint whose x and y values are rounded up to int
inherited
contains(TileIdentity other) bool
distanceTo(Point<int> other) double
Returns the distance between this and other.
inherited
floor() → CustomPoint<int>
Create new CustomPoint whose x and y values are rounded down to int
inherited
isValid() bool
key() String
multiplyBy(num n) → CustomPoint<num>
Create new CustomPoint with x and y multiplied by n
inherited
normalize() TileIdentity
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
overlaps(TileIdentity other) bool
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<int> other) int
Returns the squared distance between this and other.
inherited
toString() String
A string representation of this object.
unscaleBy(CustomPoint<int> point) → CustomPoint<int>
Create new CustomPoint whose x and y values are divided by other point values
inherited

Operators

operator *(num factor) → CustomPoint<int>
Create new CustomPoint where x and y are multiplied by factor
inherited
operator +(Point<int> other) → CustomPoint<int>
Create new CustomPoint where other point values x and y are added
inherited
operator -(Point<int> other) → CustomPoint<int>
Create new CustomPoint where x and y values are subtracted from other point x and y values
inherited
operator /(num factor) → CustomPoint<int>
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