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