Gets the list of the annotation views properties of the children of this part 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 of the children of this part 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 of the children of this part instance.
DO NOT modify in place this object, this results in undefined behavior.
part instance.
Gets the status flags of the children of this part 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 id of the part instance that was queried by retrieveChildrenIdCard.
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 children list.
DO NOT modify in place this array, this results in undefined behavior.
The ith children part instance 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 children list.
DO NOT modify in place this array, this results in undefined behavior.
The ith children part instance is therefore represented by the leaves part instances :
getSubLeafMinimums()[i], getSubLeafMinimums()[i] + 1, getSubLeafMinimums()[i] + 2, ..., getSubLeafMaximums()[i].
Gets the world transformations of the children of this part instance.
The Matrix4 follows the column multiplication convention (see Matrix4).
DO NOT modify in place this array, this results in undefined behavior.
part instance.
Tells if this part instance is a leaf, which means it has no child (in this case, arrays from getChildrenIdCard, getWorldXForms etc are empty).
true if the part instance this object refers to is a leaf.
The ChildrenPartInstanceInfoInterface interface is used to store properties about the children of a
part instance.The ChildrenPartInstanceInfoInterface is retrieved when using a retrieveChildrenIdCard.
The interface provides information about
The following code snippet allows to get the metadata of the children
part instancesby the ChildrenIdCardGetterInterface. Such a code may be triggered while receiving the IdCardReady of the ChildrenIdCardGetterInterface.or with async calls :
Please make sure the destination browser supports promises before using async calls.
See