
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
camera-picking-ray
Advanced tools
Creates a picking ray for a camera. Commonly used for mouse interaction in 2D and 3D games.
The camera is assumed to have a projection
and view
matrix, which can be combined and inverted to form invProjView
.
var origin = [0, 0, 0]
var direction = [0, 0, 0]
//compute ray and store it in (origin, direction)
pick(origin, direction, mouse, viewport, invProjView)
console.log(origin, direction)
Full example, hit-testing against a 3D sphere:
var mat4 = require('gl-mat4')
var pick = require('camera-picking-ray')
var intersect = require('ray-sphere-intersection')
//your camera matrices
var projection = ...
var view = ...
var projView = mat4.multiply([], projection, view)
var invProjView = mat4.invert([], projView)
var mouse = [ screenX, screenHeight - screenY ]
var viewport = [ 0, 0, screenWidth, screenHeight ]
var ray = {
ro: [0, 0, 0],
rd: [0, 0, 0]
}
//store result in ray (origin, direction)
pick(ray.ro, ray.rd, mouse, viewport, invProjView)
//let's see if the mouse hit a 3D sphere...
var center = [0, 0, 0],
radius = 1.5
var hit = intersect([], ray.ro, ray.rd, center, radius)
if (hit) {
console.log("Mouse hit the sphere at:", hit)
}
PRs welcome.
pick(origin, direction, mouse, viewport, invProjView)
Creates a picking ray for the given mouse
screen-space position (vec2) and viewport
screen-space bounds (x, y, width, height). invProjView
is the inverse of the combined projection * view
matrix for your camera.
Stores the resulting ray in the first two parameters: origin
(vec3) and direction
(vec3).
MIT, see LICENSE.md for details.
FAQs
creates a picking ray for a 2D/3D camera
The npm package camera-picking-ray receives a total of 360 weekly downloads. As such, camera-picking-ray popularity was classified as not popular.
We found that camera-picking-ray demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.