1.0.0 • Published 9 years ago

cube-face-vector v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

cube-face-vector

stable

Gets a unit vector for the specified index into a 3D cube, intended to be used alongside cube map manipulation in OpenGL applications. The order is the same as in DDS and OpenGL, see below.

Example

var direction = require('cube-face-vector')
var range = require('array-range')

var faces = range(6).map(i => direction(i))

Results in:

[
  [1,  0, 0],
  [-1, 0, 0],
  [0,  1, 0],
  [0, -1, 0],
  [0,  0, 1],
  [0,  0, -1]
]

Usage

NPM

vector = direction(slot)

Returns a unit vector for the given slot in a cube map, using the same ordering as OpenGL and various texture formats: px, nx, py, ny, pz, nz.

slot is between 0 (inclusive) and 6 (exclusive).

See Also

License

MIT, see LICENSE.md for details.