如何在 C# Revit 中找到面向东南、西南、东北、西北的外墙 API
How to find Exterior wall facing south-east, south-west, north-east, north-west in C# Revit API
我需要在 c# revit 中找到“外墙饰面”API...请帮助我。我想要墙面向.. 墙在其中面向东南,西南,东北,西北。
我已经提到了这个 link
https://thebuildingcoder.typepad.com/blog/2010/01/south-facing-walls.html
我使用了 math.abs(AngleToSouth) * 57.2958=角度
57.2958是redian
但没有得到
谢谢
请在提问前进行一些最低限度的研究。
寻找 Revit API 问题答案的地方之一是在 Revit SDK 附带的示例集合中。
在这种情况下,示例 DirectionCalculation
完全符合您的要求。
我需要在 c# revit 中找到“外墙饰面”API...请帮助我。我想要墙面向.. 墙在其中面向东南,西南,东北,西北。 我已经提到了这个 link https://thebuildingcoder.typepad.com/blog/2010/01/south-facing-walls.html
我使用了 math.abs(AngleToSouth) * 57.2958=角度 57.2958是redian 但没有得到 谢谢
请在提问前进行一些最低限度的研究。
寻找 Revit API 问题答案的地方之一是在 Revit SDK 附带的示例集合中。
在这种情况下,示例 DirectionCalculation
完全符合您的要求。