Point3d class Core

A point in 3d space, consisting of x, y and z coordinates.

Constructors

Point3d({double x = 0.0, double y = 0.0, double z = 0.0})
The constructor for the point class
Point3d.fromJson(Map<String, dynamic> json)
factory

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 double
The value on the X axis
getter/setter pair
y double
The value on the Y axis
getter/setter pair
z double
The value on the Z axis
getter/setter pair

Methods

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

Operators

operator ==(covariant Point3d other) bool
The equality operator.
override