vrvec4
Module: Maths
A vector.
#include <lua_api.h>
Public Functions
Type | Name |
---|---|
Any | copy() (vrCopy) Returns a copy of a Vector, Matrix, Ray, Sphere, AABBox, Quaternion or Plane |
vrvec3 | cross(Any vec2) (vrCross) Returns the cross product of two vectors. Both vectors must be the same type |
number | dot(Any vec2) (vrDot) Returns the dot product of two vectors. Both vectors must be the same type |
number | getLength() (vrLength) Returns the length of a vector. |
number | getLengthSq() (vrLengthSquared) Returns the squared length of a vector. |
Any | normalise() (vrNormalise) Returns normalised vector/matrix. |
Any | operator*() |
Any | operator+() |
Any | operator-() |
Any | operator/() |
Any | operator=() |
Public Attributes
Type | Name |
---|---|
number | w w element |
vrvec2 | wx wx elements |
vrvec3 | wxy wxy elements |
vrvec4 | wxyz wxyz elements |
vrvec3 | wxz wxz elements |
vrvec4 | wxzy wxzy elements |
vrvec2 | wy wy elements |
vrvec3 | wyx wyx elements |
vrvec4 | wyxz wyxz elements |
vrvec3 | wyz wyz elements |
vrvec4 | wyzx wyzx elements |
vrvec2 | wz wz elements |
vrvec3 | wzx wzx elements |
vrvec4 | wzxy wzxy elements |
vrvec3 | wzy wzy elements |
vrvec4 | wzyx wzyx elements |
number | x x element |
vrvec2 | xw xw elements |
vrvec3 | xwy xwy elements |
vrvec4 | xwyz xwyz elements |
vrvec3 | xwz xwz elements |
vrvec4 | xwzy xwzy elements |
vrvec2 | xy xy elements |
vrvec3 | xyw xyw elements |
vrvec4 | xywz xywz elements |
vrvec3 | xyz xyz elements |
vrvec4 | xyzw xyzw elements |
vrvec2 | xz xz elements |
vrvec3 | xzw xzw elements |
vrvec4 | xzwy xzwy elements |
vrvec3 | xzy xzy elements |
vrvec4 | xzyw xzyw elements |
number | y y element |
vrvec2 | yw yw elements |
vrvec3 | ywx ywx elements |
vrvec4 | ywxz ywxz elements |
vrvec3 | ywz ywz elements |
vrvec4 | ywzx ywzx elements |
vrvec2 | yx yx elements |
vrvec3 | yxw yxw elements |
vrvec4 | yxwz yxwz elements |
vrvec3 | yxz yxz elements |
vrvec4 | yxzw yxzw elements |
vrvec2 | yz yz elements |
vrvec3 | yzw yzw elements |
vrvec4 | yzwx yzwx elements |
vrvec3 | yzx yzx elements |
vrvec4 | yzxw yzxw elements |
number | z z element |
vrvec2 | zw zw elements |
vrvec3 | zwx zwx elements |
vrvec4 | zwxy zwxy elements |
vrvec3 | zwy zwy elements |
vrvec4 | zwyx zwyx elements |
vrvec2 | zx zx elements |
vrvec3 | zxw zxw elements |
vrvec4 | zxwy zxwy elements |
vrvec3 | zxy zxy elements |
vrvec4 | zxyw zxyw elements |
vrvec2 | zy zy elements |
vrvec3 | zyw zyw elements |
vrvec4 | zywx zywx elements |
vrvec3 | zyx zyx elements |
vrvec4 | zyxw zyxw elements |
Public Functions Documentation
copy
Any copy()
(vrCopy) Returns a copy of a Vector, Matrix, Ray, Sphere, AABBox, Quaternion or Plane
cross
vrvec3 cross(
Any vec2
)
(vrCross) Returns the cross product of two vectors. Both vectors must be the same type
Parameters:
- vec2 Vector 2 {x, y} or {x, y, z}.
dot
number dot(
Any vec2
)
(vrDot) Returns the dot product of two vectors. Both vectors must be the same type
Parameters:
- vec2 Vector 2 {x, y} or {x, y, z}.
getLength
number getLength()
(vrLength) Returns the length of a vector.
getLengthSq
number getLengthSq()
(vrLengthSquared) Returns the squared length of a vector.
normalise
Any normalise()
(vrNormalise) Returns normalised vector/matrix.
Return: Normalised vector or matrix depending on the type passed in
operator*
Any operator*()
operator+
Any operator+()
operator-
Any operator-()
operator/
Any operator/()
operator=
Any operator=()
Public Attributes Documentation
w
number w;
w element
wx
vrvec2 wx;
wx elements
wxy
vrvec3 wxy;
wxy elements
wxyz
vrvec4 wxyz;
wxyz elements
wxz
vrvec3 wxz;
wxz elements
wxzy
vrvec4 wxzy;
wxzy elements
wy
vrvec2 wy;
wy elements
wyx
vrvec3 wyx;
wyx elements
wyxz
vrvec4 wyxz;
wyxz elements
wyz
vrvec3 wyz;
wyz elements
wyzx
vrvec4 wyzx;
wyzx elements
wz
vrvec2 wz;
wz elements
wzx
vrvec3 wzx;
wzx elements
wzxy
vrvec4 wzxy;
wzxy elements
wzy
vrvec3 wzy;
wzy elements
wzyx
vrvec4 wzyx;
wzyx elements
x
number x;
x element
xw
vrvec2 xw;
xw elements
xwy
vrvec3 xwy;
xwy elements
xwyz
vrvec4 xwyz;
xwyz elements
xwz
vrvec3 xwz;
xwz elements
xwzy
vrvec4 xwzy;
xwzy elements
xy
vrvec2 xy;
xy elements
xyw
vrvec3 xyw;
xyw elements
xywz
vrvec4 xywz;
xywz elements
xyz
vrvec3 xyz;
xyz elements
xyzw
vrvec4 xyzw;
xyzw elements
xz
vrvec2 xz;
xz elements
xzw
vrvec3 xzw;
xzw elements
xzwy
vrvec4 xzwy;
xzwy elements
xzy
vrvec3 xzy;
xzy elements
xzyw
vrvec4 xzyw;
xzyw elements
y
number y;
y element
yw
vrvec2 yw;
yw elements
ywx
vrvec3 ywx;
ywx elements
ywxz
vrvec4 ywxz;
ywxz elements
ywz
vrvec3 ywz;
ywz elements
ywzx
vrvec4 ywzx;
ywzx elements
yx
vrvec2 yx;
yx elements
yxw
vrvec3 yxw;
yxw elements
yxwz
vrvec4 yxwz;
yxwz elements
yxz
vrvec3 yxz;
yxz elements
yxzw
vrvec4 yxzw;
yxzw elements
yz
vrvec2 yz;
yz elements
yzw
vrvec3 yzw;
yzw elements
yzwx
vrvec4 yzwx;
yzwx elements
yzx
vrvec3 yzx;
yzx elements
yzxw
vrvec4 yzxw;
yzxw elements
z
number z;
z element
zw
vrvec2 zw;
zw elements
zwx
vrvec3 zwx;
zwx elements
zwxy
vrvec4 zwxy;
zwxy elements
zwy
vrvec3 zwy;
zwy elements
zwyx
vrvec4 zwyx;
zwyx elements
zx
vrvec2 zx;
zx elements
zxw
vrvec3 zxw;
zxw elements
zxwy
vrvec4 zxwy;
zxwy elements
zxy
vrvec3 zxy;
zxy elements
zxyw
vrvec4 zxyw;
zxyw elements
zy
vrvec2 zy;
zy elements
zyw
vrvec3 zyw;
zyw elements
zywx
vrvec4 zywx;
zywx elements
zyx
vrvec3 zyx;
zyx elements
zyxw
vrvec4 zyxw;
zyxw elements