I have couple of walls in a project. I want to find out which walls are adjacent to each other.
Asked
Active
Viewed 326 times
1 Answers
3
If the adjacent walls all meet at their respective endpoints, the LocationCurve.ElementsAtJoin
property will give you exactly what you are asking for.
Unfortunately, it will not help in the case where the adjacent walls intersect each another in non-endpoints, e.g., at their midpoints or somewhere else along their location curves except the endpoints.

Jeremy Tammik
- 7,333
- 2
- 12
- 17
-
Thanks Jeremy. I tried LocationCurve.get_ElementsAtJoin(0) and it worked for me. – Robert Dec 14 '16 at 19:09