Global

Members

(constant) cameraType :Object.<{type: String}>

Object with the current camera type.
Type:
  • Object.<{type: String}>
Source:

(constant) cameras :Array.<String>

Array of camera types.
Type:
  • Array.<String>
Source:

gui :GUI

Global GUI.
Type:
  • GUI
Source:

(constant) orthographicDistance :Number

Orthographic camera distance.
Type:
  • Number
Source:

(constant) perspectiveDistance :Number

Perspective camera distance.
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}

Creates an orthographic camera.
Source:
Returns:
newCamera
Type
THREE.OrthographicCamera

makePerspectiveCamera() → {THREE.PerspectiveCamera}

Creates a perspective camera.
Source:
Returns:
newCamera
Type
THREE.PerspectiveCamera

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()

Render a scene or another type of object using a camera.
Source:
See:

setCamera(type)

Sets the camera type to either "Orthographic" or "Perspective".
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: