This class is a special version of [page:TrackballControls] which supports orthographic cameras.
[example:misc_controls_trackball_orthographic misc / controls / trackball / orthographic ]
[page:OrthographicCamera camera]: The orthographic camera of the rendered scene.
[page:HTMLDOMElement domElement]: (optional) The HTML element used for event listeners. By default this is the whole document, however if you only want the controls to work over a specific element (e.g. the canvas) you can specify that here.
Creates a new instance of [name].
Fires when the camera has been transformed by the controls.
Fires when an interaction (e.g. touch) was initiated.
Fires when an interaction has finished.
The HTMLDOMElement used to listen for mouse / touch events. This must be passed in the constructor; changing it here will not set up new event listeners. Default is the whole document.
Defines the intensity of damping. Only considered if [page:.staticMoving staticMoving] is set to *false*. Default is *0.2*.
Whether or not the controls are enabled.
This array holds keycodes for controlling interactions.
Whether or not panning is disabled. Default is *false*.
Whether or not rolling is disabled. Default is *false*.
Whether or not rotation is disabled. Default is *false*.
Whether or not zooming is disabled. Default is *false*.
The camera being controlled.
The zoom speed. Default is *0.3*.
The rotation speed. Default is *1.0*.
Represents the properties of the screen. Automatically set when [page:.handleResize handleResize]() is called.
Whether or not damping is disabled. Default is *false*.
The zoom speed. Default is *1.2*.
Should be called if the controls is no longer required.
Should be called if the application window is resized.
Performs panning if necessary. Called by [page:.update update]().
Resets the controls to its initial state.
Rotates the camera if necessary. Called by [page:.update update]().
Updates the controls. Usually called in the animation loop.
Performs zooming if necessary. Called by [page:.update update]().
[link:https://github.com/mrdoob/three.js/blob/master/examples/js/controls/TrackballControls.js examples/js/controls/TrackballControls.js]