Intersect
class
class Intersect {
num distance;
Vector3 point;
Face face;
Object3D object;
Intersect({this.distance, this.point, this.face, this.object});
}
Constructors
new Intersect({num distance, Vector3 point, Face face, Object3D object}) #
Creates a new Object instance.
Object instances have no meaningful state, and are only useful
through their identity. An Object instance is equal to itself
only.
Intersect({this.distance, this.point, this.face, this.object});