Reference Source
public class | source

AngleMeasurementsControl

Extends:

Component → AngleMeasurementsControl

Creates AngleMeasurements from mouse and touch input.

Belongs to a AngleMeasurementsPlugin. Located at AngleMeasurementsPlugin#control.

Once the AngleMeasurementControl is activated, the first click on any Entity begins constructing a AngleMeasurement, fixing its origin to that Entity. The next click on any Entity will complete the AngleMeasurement, fixing its target to that second Entity. The AngleMeasurementControl will then wait for the next click on any Entity, to begin constructing another AngleMeasurement, and so on, until deactivated.

See AngleMeasurementsPlugin for more info.

Member Summary

Public Members
public get

Gets if this AngleMeasurementsControl is currently active, where it is responding to input.

public

The AngleMeasurementsPlugin that owns this AngleMeasurementsControl.

public

Method Summary

Public Methods
public

Activates this AngleMeasurementsControl, ready to respond to input.

public

Deactivates this AngleMeasurementsControl, making it unresponsive to input.

public

reset()

Resets this AngleMeasurementsControl.

Inherited Summary

From class Component
public get

The Component that owns the lifecycle of this Component, if any.

public

True as soon as this Component has been destroyed

public

ID of this Component, unique within the Scene.

public

meta: *

Arbitrary, user-defined metadata on this component.

public

The parent Scene that contains this Component.

public

The viewer that contains this Scene.

public

clear()

Destroys all Components that are owned by this.

public

Destroys this component.

public

error(message: String)

Logs an error for this component to the JavaScript console.

public

fire(event: String, value: Object, forget: Boolean)

Fires an event on this component.

public

Returns true if there are any subscribers to the given event on this component.

public

isType(type: *): *: Boolean

Tests if this component is of the given type, or is a subclass of the given type.

public

log(message: String)

Logs a console debugging message for this component.

public

off(subId: String)

Cancels an event subscription that was previously made with Component#on or Component#once.

public

on(event: String, callback: Function, scope: Object): String

Subscribes to an event on this component.

public

once(event: String, callback: Function, scope: Object)

Subscribes to the next occurrence of the given event, then un-subscribes as soon as the event is subIdd.

public

warn(message: String)

Logs a warning for this component to the JavaScript console.

Public Members

public get active: boolean: * source

Gets if this AngleMeasurementsControl is currently active, where it is responding to input.

Return:

boolean

public plugin: AngleMeasurementsPlugin source

The AngleMeasurementsPlugin that owns this AngleMeasurementsControl.

public startDot: * source

Public Methods

public activate() source

Activates this AngleMeasurementsControl, ready to respond to input.

public deactivate() source

Deactivates this AngleMeasurementsControl, making it unresponsive to input.

Destroys any AngleMeasurement under construction.

public reset() source

Resets this AngleMeasurementsControl.

Destroys any AngleMeasurement under construction.

Does nothing if the AngleMeasurementsControl is not active.