Plane class

Constructors

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

Properties

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

Methods

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

Operators

operator ==(dynamic 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.