Point4d class Core

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

Constructors

Point4d({double x = 0.0, double y = 0.0, double z = 0.0, double w = 0.0})
Constructor for the point class
Point4d.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
w double
The value on the W axis
getter/setter pair
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 Point4d other) bool
The equality operator.
override