Gets the part instance class ids from the root to this part instance /root/.../grandparent/parent/instance.
DO NOT modify in place this array, this results in undefined behavior.
part instance class ids from the root to this
part instance.Gets the status flags from the root to this part instance : /root/.../grandparent/parent/instance.
The status flags are the OR of PartInstanceInfoStatusFlag.
DO NOT modify in place this array, this results in undefined behavior.
part instance.
Gets the list of the annotation views properties from the root to this part instance : /root/.../grandparent/parent/instance.
This gets an array of array of AnnotationViewInfoInterface.
DO NOT modify in place this array, this results in undefined behavior.
part instance.
Gets the list of the attached documents from the root to this part instance : /root/.../grandparent/parent/instance.
This gets an array of array of AttachedDocumentInfoInterface.
DO NOT modify in place this array, this results in undefined behavior.
part instance.
Gets all the metadata from the root to this part instance : /root/.../grandparent/parent/instance.
DO NOT modify in place this object, this results in undefined behavior.
part instance.
Gets the id of the part instance that was queried by retrieveIdCard.
The part instance id this object refers to.
Gets the maximum part instance id of the leaves that represent the node/leaf part instance for the full hierarchy.
DO NOT modify in place this array, this results in undefined behavior.
The given part instance at depth i is therefore represented by the leaves part instances :
getSubLeafMinimums()[i], getSubLeafMinimums()[i] + 1, getSubLeafMinimums()[i] + 2, ..., getSubLeafMaximums()[i].
Gets the minimum part instance id of the leaves that represent the node/leaf part instance for the full hierarchy.
DO NOT modify in place this array, this results in undefined behavior.
The given part instance at depth i is therefore represented by the leaves part instances :
getSubLeafMinimums()[i], getSubLeafMinimums()[i] + 1, getSubLeafMinimums()[i] + 2, ..., getSubLeafMaximums()[i].
Gets the world transformations from the root to this part instance : /root/.../grandparent/parent/instance.
The Matrix4 follows the column multiplication convention (see Matrix4).
DO NOT modify in place this array, this results in undefined behavior.
part instance.
The PartInstanceInfoInterface interface is used to store properties about a
part instanceand its genealogy.The PartInstanceInfoInterface is retrieved when using a retrieveIdCard i.e. when the metadata attached to a
part instanceare retrieved.The interface provides information about
The following code snippet allows to get the metadata of a
part instanceby the IdCardGetterInterface. Such a code may be triggered while receiving the IdCardReady of the IdCardGetterInterface.WARNING : there is a unique instantiation chain from the root to a
part instance, as such, if you query multiplepart instanceswhen using retrieveIdCard, getPartInstanceInfos will return an array of PartInstanceInfoInterface of the same size.or with async calls :
Please make sure the destination browser supports promises before using async calls.
See