My favorites | English | Sign in

Vectormath.Aos Module Reference

List of all members.


Detailed Description

A namespace for the VectorMath.Aos

Public Properties

<Global>  !Array.<!Array.<number>> Matrix3 Vectormath.Aos
<Global>  !Array.<!Array.<number>> Matrix4 Vectormath.Aos
<Global>  !Array.<number> Point3 Vectormath.Aos
<Global>  !Array.<number> Quat Vectormath.Aos
<Global>  !Array.<number> Vector3 Vectormath.Aos
<Global>  !Array.<number> Vector4 Vectormath.Aos

Member Property Documentation

!Array.<!Array.<number>> Vectormath.Aos.Matrix3

A data type representing a 3x3 Matrix. A Matrix3 is represented in JavaScript by an array containing 3 arrays of 3 numbers each:

[[x0, y0, z0],
 [x1, y1, z1],
 [x2, y2, z2]]
!Array.<!Array.<number>> Vectormath.Aos.Matrix4

A data type representing a 4x4 Matrix. A Matrix4 is represented in JavaScript by an array containing 4 arrays of 4 numbers each:

[[x0, y0, z0, w0],
 [x1, y1, z1, w1],
 [x2, y2, z2, w2],
 [x3, y3, z3, w3]]
!Array.<number> Vectormath.Aos.Point3

A data type representing a 3d point. A Point3 is represented in JavaScript by an array containing 3 numbers: [x, y, z].

!Array.<number> Vectormath.Aos.Quat

A data type representing a Quaterion. A Quat is represented in JavaScript by an array containing 4 numbers: [x, y, z, w]

!Array.<number> Vectormath.Aos.Vector3

A data type representing a 3d direction. A Vector3 is represented in JavaScript by an array containing 3 numbers: [x, y, z].

!Array.<number> Vectormath.Aos.Vector4

A data type representing a 4 value Vector. A Vector4 is represented in JavaScript by an array containing 4 numbers: [x, y, z, w].