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
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
andc
and copy it intoresult
.