Members
(constant) cameraType :Object.<{type: String}>
Type:
- Object.<{type: String}>
- Source:
(constant) cameras :Array.<String>
Type:
- Array.<String>
- Source:
gui :GUI
Type:
- GUI
- Source:
(constant) orthographicDistance :Number
Type:
- Number
- Source:
(constant) perspectiveDistance :Number
Type:
- Number
- Source:
Methods
init()
Loads the viewer and starts the animation.
Initializes the scene, camera, renderer, and the arcball controls.
- Source:
makeOrthographicCamera() → {THREE.OrthographicCamera}
- Source:
Returns:
makePerspectiveCamera() → {THREE.PerspectiveCamera}
- Source:
Returns:
onKeyDown(event)
Copy the current state to clipboard (as a readable JSON text) when the "ctrl-c" key is pressed or
set the controls state from the clipboard, assumming that the clipboard holds a JSON text file
previously saved from .copyState when the "ctrl-v" key is pressed.
Parameters:
Name | Type | Description |
---|---|---|
event |
KeyboardEvent | a UIEvent. |
- Source:
render()
- Source:
- See:
setCamera(type)
Parameters:
Name | Type | Description |
---|---|---|
type |
String | camera type: "Orthographic" or "Perspective". |
- Source:
Type Definitions
onWindowResize()
Fires when the document view (window) has been resized.
Also resizes the canvas and viewport.- Source:
- See:
Events
clickReset
Appends an event listener for events whose type attribute value is click.
Fires after both the mousedown and mouseup events have fired (in that order).
Reset button must be pressed and released while the pointer is located inside it.The callback argument sets the callback that will be invoked when the event is dispatched.
- Source:
- See:
keydown
Appends an event listener for events whose type attribute value is keydown.
Fired when a key is pressed.
The callback argument sets the callback that will be invoked when the event is dispatched.
Parameters:
Name | Type | Description |
---|---|---|
event |
KeyboardEvent | a UIEvent. |
function |
callback | function to run when the event occurs. |
- Source:
- See:
load
Sets the entry point of the application.
Fired when the whole page has loaded, including all dependent resources such as stylesheets, scripts, iframes, and images, except those that are loaded lazily.
Type:
- function
Parameters:
Name | Type | Description |
---|---|---|
event |
Event | load event. |
- Source:
- See:
resize
Appends an event listener for events whose type attribute value is resize.
Fires when the document view (window) has been resized.
The callback argument sets the callback that will be invoked when the event is dispatched.
Parameters:
Name | Type | Description |
---|---|---|
event |
Event | a generic event. |
function |
callback | function to run when the event occurs. |
useCapture |
Boolean | handler is executed in the bubbling or capturing phase. |
- Source:
- See: