
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
We are trying to develop a dynamo script which will extract the point coordinates of an adaptive component placement point and the defines shape handle points.
In a python script node we can obtain the element ID as follows:
for elem in adaptComp:
adaptPoints = AdaptiveComponentInstanceUtils.GetInstancePlacementPointElementRefIds(elem)
output.append(adaptPoints)
Feeding this element ID into the AdaptiveComponent.Location node in dynamo gives us the point coordinates for the Placement point however, there does not seem to be a similar node to extract the geometry for the shape handles.
Feeding the element ID into the Clockwork Element.Location+ node also fails to retrieve the point geometry for the shape handles.
Is there a way in which the adaptive point shape handle point location can be returned in by python.
What would the python script be for the equivalent of the AdaptiveComponent.Location node and how would this be adapted for the shape handles?
Solved! Go to Solution.