Points to surface at revit Dynamo

There is a ConvexHull.ByPoints node, but this only works with planar points.

To use this node to find your boundary points you will have to:

  • Project your points onto the XY plane. (effectively removing any Z component)

  • Find the boundary curve of the Hull of these points.

  • Check for points thar occur on this boundary.

  • Add the Z component back to the points based on their relationship with the original data.

Actually sounds like lots of fun :slight_smile: just not at my PC at the moment to demonstrate.

Some topics to help.

Concave Hull

Convex Hull

1 Like