MeasureArea class

A tool use to measure the area on model surface. Users can reset the current measurement by clicking the mouse right button. Users can press "Esc/Enter" to stop the current measurement.

Signature:

export default class MeasureArea extends Measure 

Extends: Measure

Remarks

Notice that we can not enable multiple measure tools at the same time. Before a new tool being enabled, the old tool must be disabled first.

Moreover, the measurement tools require mouse input and mouse input should be added to the viewer before the tool.

*

Example

var ruler = new Modelo.View.Tool.MeasureArea(viewer);
viewer.addTool(ruler);

Constructors

ConstructorDescription
(constructor)(viewer)Constructs a new instance of the MeasureArea class

Methods

MethodDescription
setEnabled(enabled)Enable the tool.