Socket
Socket
Sign inDemoInstall

extract-frustum-planes

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    extract-frustum-planes

Extracts the planes for a WebGL viewing frustum


Version published
Weekly downloads
72K
increased by8%
Maintainers
1
Install size
4.49 kB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 19 Jun 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc