TrianglePicker

class cee.ug.TrianglePicker()

Client-side visible triangle picker. This class can be used to get triangles that are currently visible in the view, either within a specified rectangular region or at specified points.

Use RemoteModel.createTrianglePicker to create instances of this class.

It is the programmer’s responsibility to call destroy on pickers that are no longer needed, in order to release resources.

Note that a TrianglePicker is only valid while the model is in the same state as when the picker was created. A new picker must be created whenever any display properties are changed on the model, such as current frame or draw style.


Methods

destroy

TrianglePicker.destroy()

Release WebGL resources. Once called this object can no longer be used.

Return type:

void

getVisibleTrianglesAtPoints

TrianglePicker.getVisibleTrianglesAtPoints(cssPixCoords)
Arguments:
  • cssPixCoords ([Vec2Like]) – Points in canvas offset css coordinates. These are relative to the top left corner of the Canvas element (like MouseEvent.offsetX/Y). Note that the coordinates are relative to the top left corner of the Canvas element, as in the MouseEvent.offsetX/offsetY if the target of the event is the Canvas Element. If using multiple Views, they will not be local to the given View the TrianglePicker belongs to, but to the parent Viewer.

Returns visible triangles currently located at the specified points in the view

Return type:

[ClientSideHitItem]

getVisibleTrianglesInRectangle

TrianglePicker.getVisibleTrianglesInRectangle(cssPixCoordX, cssPixCoordY, width, height)
Arguments:
  • cssPixCoordX (number) – The left side of the rectangle in css pixel coordinates. This is relative to the top left corner of the Viewer’s Canvas element.

  • cssPixCoordY (number) – The top side of the rectangle in css pixel coordinates. This is relative to the top left corner of the Viewer’s Canvas element.

  • width (number) – None

  • height (number) – None

Returns visible triangles currently located within the given rectangular region of the view

Return type:

[ClientSideHitItem]