Ray

Mostrar obsoleto

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.

Resumen

Constructores

Propiedades

Métodos

Constructores

new

Parámetros

Origin: Vector3
Direction: Vector3

Propiedades

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étodos

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!

Parámetros

point: Vector3

Devuelve

Distance

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

Parámetros

point: Vector3

Devuelve