Plane class

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
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
normal Vector3
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyFrom(Plane o) → void
distanceToVector3(Vector3 point) double
normalize() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent 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.