mgGetTrunkTopo
mgGetTrunkTopo(d_pathSeg) =>l_trunkIds/ nil
Description
Returns a list of topology trunks belonging to the specified pathSeg.
Arguments
|
Database ID of the pathSeg for which associated topological trunks need to be retrieved. |
Value Returned
Example
Returns a list of topology trunks.
mgId = car(geGetEditCellView()~>figGroups)
geomTrunks = setof(fig mgId~>figs mgGetTrunkTopo(fig)!=nil)
print("There are ")
print(length(geomTrunks))
println("pathsegs associated with topological trunks in this Modgen")
Return to top