GithubHelp home page GithubHelp logo

doc22940 / orbit-controls Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jam3/orbit-controls

1.0 0.0 0.0 580 KB

generic controls for orbiting a target in 3D

Home Page: http://jam3.github.io/orbit-controls/

License: MIT License

JavaScript 95.34% HTML 4.66%

orbit-controls's Introduction

orbit-controls

experimental

(demo) โ€“ (source)

Generic controls for orbiting a target in 3D. Can be used to control a camera, a 3D ray, or anything with { position, direction }.

Features:

  • zooms on mouse wheel
  • values are smoothed with damping
  • intuitive orbiting; roll is locked
  • modular and un-opinionated; can be used in any render engine
  • zooming with two-touch pinch

Roadmap:

  • panning with two fingers / right mouse button

Can be used with any camera abstraction that uses position and direction to form the view matrix, including ThreeJS, Babylon, stackgl, etc.

Well-suited alongside perspective-camera.

Note: This module is still in development.

Example

var controls = require('orbit-controls')()

function tick () {
  controls.update()
  controls.copyInto(camera.position, camera.direction, camera.up)
}

Demos

Usage

NPM

controls = createControls([opts])

  • position the initial position of the camera, default [0, 0, 1]
  • up the initial direction of the camera, default [0, 1, 0]
  • target the center of the orbit, default [0, 0, 0]
  • phi the initial rotation in radians, phi in spherical coordinates, default Math.PI/2
  • theta the initial rotation in radians, theta in spherical coordinates, default 0
  • distance the distance from the target, default 1
  • damping how fast the controls slow down, between 0 and 1, default 0.25
  • rotateSpeed the speed of the rotation, default 0.28
  • zoomSpeed the speed of the zoom, default 0.0075
  • pinchSpeed (coming soon) the speed of the pinch, default 0.0075
  • pinch (coming soon) enable pinching, default true
  • zoom enable zooming, default true
  • rotate enable rotating, default true
  • phiBounds the bounds of the phi rotation, default [0, Math.PI]
  • thetaBounds the bounds of the theta rotation, default [-Infinity, Infinity]
  • distanceBounds the bounds of the distance, default [0, Infinity]
  • parent the parent element, default window
  • element the element, default window

methods

controls.update()

Update the internal position, direction, and up vectors that represent the camera.

controls.copyInto(position, direction, up)

Apply the control's current state to a target camera.

This is purely for convenience; you can also copy the controls.position and other members manually.

controls.enable()

Enables the DOM events and input, attaching new mouse and touch events. If already enabled, this function does nothing.

controls.disable()

Disables the DOM events and input, detaching all events. If already disabled, this function does nothing.

properties

position, direction, up

Vector arrays [x, y, z] that represent the camera controls. These are typically copied into your camera interface with:

var camera = new MyPerspectiveCamera()
controls.copyInto(camera.position, camera.direction, camera.up)

target

The vec3 center of the orbit

phi, theta

The initial rotation in radians, in spherical coordinates. Changing either will re-calculate the direction.

distance

The distance from the target, default 1

damping

How fast the controls slow down, between 0 and 1, default 0.25

rotateSpeed, zoomSpeed, pinchSpeed

The speed of the controls.

pinch, zoom, rotate

Enable pinch, zoom, and rotate

phiBounds, thetaBounds, distanceBounds

The bounds of the controls

dragging (read-only)

Returns true if the user is currently dragging the controls.

pinching (read-only)

Returns true if the user is currently pinching (zooming on mobile) the controls.

License

MIT, see LICENSE.md for details.

orbit-controls's People

Contributors

gregtatum avatar mattdesl avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.