Plane class Null safety

Constructors

Plane()
Plane.components(double x, double y, double z, double constant)
Plane.copy(Plane other)
Plane.normalconstant(Vector3 normal_, double constant)

Properties

constant double
read / write
hashCode int
The hash code for this object.
read-onlyinherited
normal Vector3
read-only
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

copyFrom(Plane o) → void
distanceToVector3(Vector3 point) double
normalize() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
setFromComponents(double x, double y, double z, double w) → void
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

intersection(Plane a, Plane b, Plane c, Vector3 result) → void
Find the intersection point between the three planes a, b and c and copy it into result.