dbGetInstTransform
dbGetInstTransform(l_dbInstId) =>x_InstTransform
Description
Returns the concatenated transform of all instance or mosaic IDs present in the nested list passed as the parameter. The nested list represents the path to an object, such as the lists returned by dbGetTrueOverlaps or dbGetOverlaps.
The first elements of the list represent the instances and/or the mosaics traversed to get the object. The last element of the list is the object itself.
If the object is an instance or a mosaic, its transform is also concatenated to the resulting transform. To get rid off the concatenation of the last object transform, use
dbGetHierPathTransform.Arguments
Value Returned
Examples
objectsPaths = dbGetOverlaps(geGetEditCellView() geGetEditCellView()~>bBox t 32 t)
foreach(objectPath objectsPaths println(dbGetInstTransform(objectPath)))
Return to top