Point class

Constructors

Point({required double x, required double y})
Point.copy(Point p)
Point.fromArray(List<double> array)
Point.fromMGRS(String mgrsString)
factory
Point.fromString(String coordsString)
factory
Point.withM({required double x, required double y, double? z, double? m})
Point.withZ({required double x, required double y, double? z})

Properties

hashCode int
The hash code for this object.
no setterinherited
m double?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
x double
getter/setter pair
y double
getter/setter pair
z double?
getter/setter pair

Methods

copyWith({double? x, double? y, double? z, double? m}) Point
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toArray() List<double>
toMGRS(int accuracy) String
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited