QueryElementInfo
- class cee.ug.QueryElementInfo()
Query information about elements for a given frame or all frames
Constructors
Accessors
elementIdentType
Constructors
- QueryElementInfo.constructor(model)
- Arguments:
model (
RemoteModel) – None
- Return type:
QueryElementInfo
Accessors
- cee.ug.elementIdentType()
Specify whether the
elementIdentArrparameter inexecuteQueryis to be interpreted as an array of IDs or indices. Defaults to IDs.- Return type:
RemoteQueryInputIdentType
- cee.ug.elementIdentType(identType)
- Arguments:
identType (
RemoteQueryInputIdentType) – None
- Return type:
void
Methods
executeQuery
- QueryElementInfo.executeQuery(frameIndex, geometryIndex, partId, elementIdentArr, scalarResultId, vectorResultId, callback)
- Arguments:
frameIndex (
number) – The index of the frame to get info for. Specify -1 for all framesgeometryIndex (
number) – The index of the geometry the part belongs to. In most cases there is only one geometry and this parameter should be 0. Specify -1 to search in all geometries.partId (
number) – The id of the part containing the elements. Specify -1 to search in all parts.elementIdentArr (
[number]) – Array with ids or indices of the elements to get information for. UseelementIdentTypeto specify what this array contains.scalarResultId (
number) – The id of the scalar to use for scalarResult. If -1 then the result currently shown as scalar fringes on the part will be used.vectorResultId (
number) – The id of the vector to use for vectorResults. If -1 then the vector results currently set in the modelSpec will be used.callback (
QueryElementInfoCallback) – Function getting called when the result is received from the server.
Executes the query for the given elements.
- Return type:
void
executeQueryByClientSideHitItems
- QueryElementInfo.executeQueryByClientSideHitItems(hitItems, scalarResultId, vectorResultId, callback)
- Arguments:
hitItems (
[ClientSideHitItem]) – The client-side hit items to execute the query over. UseRemoteModel.clientSideRayIntersectorTrianglePickerto create client-side hit items.scalarResultId (
number) – The id of the scalar to use for scalarResult. If -1 then the result currently shown as scalar fringes on the part will be used.vectorResultId (
number) – The id of the vector to use for vectorResults. If -1 then the vector results currently set in the modelSpec will be used.callback (
QueryElementInfoCallback) – Function getting called when the result is received from the server.
Executes the query for the given ClientSideHitItem array.
- Return type:
void