Navigate a three.js scene with pointer events
npm install three-pointer-controlsNavigate a three.js scene with pointer events
This is an implementation of orbit controls inspired by
three-orbit-controls
but with pointer events instead of
mouse events. See test for an example.

``js`
PointerControls = require('three-pointer-controls')(THREE)
This module exports a function which accepts an instance of THREE, and returns
an OrbitControls class. Use it to control one or several scenes by calling:
`js`
controls = new PointerControls()
controls.control(camera)
controls.listenTo(domElement)
or
`js`
controls = new PointerControls()
controls.control(camera).with(domElement)
Clone the repository, run npm install and npm test. Then openlocalhost:9966` to try out three-pointer-controls.