ClientSideHitItem

class cee.ug.ClientSideHitItem()

The result of a client side picking call on a RemoteModel.

Returned by RemoteModel.clientSideRayIntersect and TrianglePicker.

This class only contains data available on the client. For hit items with objectType = PART, QueryElementInfo.executeQueryByClientSideHitItems can be used to fetch complete data from the server.

Accessors

  • geometryIndex

  • intersectionPoint

  • objectId

  • objectType

  • vertices


Accessors

cee.ug.geometryIndex()

The index of the CAE geometry.

In almost all cases this will be 0. If using a partially adaptive model with remeshing only on parts of the model (e.g. in a Forging process) the concept of multiple geometries might be relevant.

Return type:

number

cee.ug.intersectionPoint()

The 3d point (in world coordinates) on the surface that was hit.

This is the actual point that was hit.

Note that this property is only set by rayIntersect(). It is left undefined by TrianglePicker.

Return type:

Vec3

cee.ug.objectId()

The id of the object (part/iso/cut/isovol) that was hit

Return type:

number

cee.ug.objectType()

The type of object (part/iso/cut/isovol) that was hit

Return type:

ObjectType

cee.ug.vertices()

The triangle vertices of the geometry that was hit

Return type:

[number]