Перейти к содержанию

Vector3::cross

Материал из RAGE MP Wiki Archive
Версия от 06:48, 31 мая 2019; imported>Micaww (Created page with "This function is used to calculate the cross product of two vectors. The cross product is a vector that is perpendicular to both input vectors. ==Syntax== <pre> vector.add(Ve...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

This function is used to calculate the cross product of two vectors. The cross product is a vector that is perpendicular to both input vectors.

Syntax

vector.add(Vector3 otherVec);

Required Arguments

  • otherVec: Vector3: The other vector.

Returns

  • Vector3 The cross product.

See Also