Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

extract-frustum-planes

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extract-frustum-planes

Extracts the planes for a WebGL viewing frustum

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
27K
decreased by-6.64%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 19 Jun 2014

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc