Point class

2-dimensional point

Constructors

Point([num x = 0, num y = 0])
Point.from(Point other)

Properties

hashCode → int
The hash code for this object.
no setteroverride
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
x ↔ num
getter/setter pair
xi → int
no setter
y ↔ num
getter/setter pair
yi → int
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator *(double s) → Point
operator +(Point rhs) → Point
operator ==(Object other) → bool
The equality operator.
override