Tag: revit

如何find斜坡的开始/结束,也许用草图?

我有一堆斜坡,我想知道的开始和结束点(以及在多个开始/终点的情况下,我想知道他们如何连接)。 我目前得到这些 List<TransitionPoint> ret = new List<TransitionPoint>(); FilteredElementCollector collector = new FilteredElementCollector(doc); ICollection<Element> ramps = collector.OfCategory(BuiltInCategory.OST_Ramps).ToElements(); foreach (var ramp in ramps) { //what goes here? } 这些斜坡包含以下属性: Type Comments Ramp Max Slope (1/x) Category URL Design Option Type Name Ramp Material Function Manufacturer Family Name Model Keynote Type Image Text Size Shape Text Font Maximum […]