4-point adaptive family

I am trying to place a 4-point adaptive family using dynamo.

I have a list created with 4 points listed (x,y,z axis), but instead dynamo is taking each point and placing 4 families at each point, I can not figure out what I am doing wrong.

Any suggestions would be much appreciated!

@karolinaXEP

check out this…

KR

Andreas

2 Likes

You’ll need an AdaptiveComponent.ByPoints node instead of a FamilyInstance.ByPoint node. Also your list of points must be two dimensional, so you’d want a List.Create node after the flatten node.

Note that Topology.Verticies and Vertex.PointGeometry might be a better solution than Surface.PointAtParameter if your surface is irregular but is consistently defined by 4 points.

3 Likes

You re a savior, thanks a milion!

1 Like