Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
gl-movable-camera
Advanced tools
A camera that can easily be moved and turned.
The camera is defined by the three vectors
up
, which is always the vector (0,1,0)
viewDir
, the viewing direction, which can be controlled through the API.right
, which is the cross product of up
and viewdir
A demo is provided: http://erkaman.github.io/gl-movable-camera/
The camera in the demo is controlled as follows:
W
and S
are used to walk forward and backward.A
and D
are used to stride left and right.O
and L
are used to fly up and down.M
to speed up the camera.npm install gl-movable-camera
var createMovableCamera = require('gl-movable-camera')
var camera = createMovableCamera([opts])
Creates a movable camera. The optional arguments are
opts.position
Initial position of the cameraopts.viewDir
Initial viewing direciton of the camera.camera.view(view)
Yields the view matrix of the camera.
camera.turn (head, pitch)
Rotates the viewing direction head
radians around up
, and
rotates the viewing direction pitch
radians around right
.
camera.walk(walkForward)
If walkForward
is true
, walk velocity
units in the direction of
viewDir
. Else, walk backward.
camera.stride(strideRight)
If strideRight
is true
, stride velocity
units in the direction of
right
. Else, stride in the opposite direciton.
camera.fly(flyUp)
If flyUp
is true
, fly velocity
units in the direction of
up
. Else, fly down in the opposite direciton.
camera.velocity
By setting this variable, you can control the movement speed of the camera.
camera.turning
By setting this variable, you can control the turning velocity of the camera.
FAQs
A camera that can be easily be moved and turned.
The npm package gl-movable-camera receives a total of 3 weekly downloads. As such, gl-movable-camera popularity was classified as not popular.
We found that gl-movable-camera 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.