Dart DocumentationthreeIntersect

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.

docs inherited from Object
Intersect({this.distance, this.point, this.face, this.object});

Properties

num distance #

num distance

Face face #

Face face

Object3D object #

Object3D object

Vector3 point #

Vector3 point