Ray

Afficher les obsolètes

The Ray data type represents a half-line, finite in one direction but infinite in the other. It can be defined by a 3D point, where the line originates from, and a direction vector, which is the direction it goes in.

Résumé

Constructeurs

Propriétés

Méthodes

Constructeurs

new

Paramètres

Origin: Vector3
Direction: Vector3

Propriétés

Unit

The Ray with a normalized direction (the direction has a magnitude of 1).

Origin

The position of the origin.

Direction

The direction vector of the Ray.

Méthodes

ClosestPoint

Returns a Vector3 projected onto the ray so that it is within the Ray line of sight.

Note: the Ray must be a unit ray for this method to behave as expected!

Paramètres

point: Vector3

Retours

Distance

Returns the distance between the given point and the point on the ray nearest to the given point (Ray.ClosestPoint(point)).

Paramètres

point: Vector3

Retours