extract-frustum-planes
Extracts the planes for a WebGL viewing frustum
Last updated 11 years ago by mikolalysenko .
MIT · Repository · Bugs · Original npm
$ cnpm install extract-frustum-planes 
SYNC missed versions from official npm registry.

extract-frustum-planes

Returns a list of frustum planes from a given WebGL matrix (assuming the matrix is stored in the same format as used by gl-matrix).

Install

npm install extract-frustum-planes

Example

var getPlanes = require("extract-frustum-planes")

var glm = require("gl-matrix")
var m = glm.mat4.perspective()

API

require("extract-frustum-planes")(worldToClip[, zNear, zFar])

Extracts the frustum planes of the combined world to clip coordinate matrix for WebGL

  • worldToClip is the concatenated model-view-projection matrix in the same format as expected by WebGL (ie compatible with gl-matrix)
  • zNear is the near clip plane distance as set by gl.depthRange (default 0.0)
  • zFar is the far clip plane distance as set by gl.depthRange

Returns An array of 6 planes encoding the view frustum stored in the order:

  • left
  • right
  • top
  • bottom
  • near
  • far

Credits

(c) 2013 Mikola Lysenko. MIT License

Current Tags

  • 1.0.0                                ...           latest (11 years ago)

1 Versions

  • 1.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (2)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org