摘要: Autodesk.Revit.UI.Selection Classes PickedBox 包含两个 XYZ 点的类,表示屏幕上的选取框。 Properties Max 最大坐标数(拾取框的右上角)。 Min 最小坐标(拾取框的左下角)。 SelectableInViewFilter 一个过滤器,用 阅读全文
posted @ 2024-12-19 18:35 funtim 阅读(25) 评论(0) 推荐(0)
摘要: Autodesk.Revit.DB ReferenceIntersector 用于查找和返回与从原点和方向创建的射线相交的元素的类。 语法 public class ReferenceIntersector : IDisposable 附注 可以构造此类的实例,以返回与由原点和方向创建的射线,或者基 阅读全文
posted @ 2024-12-10 21:24 funtim 阅读(39) 评论(0) 推荐(0)
摘要: 线程 创建 Thread thread1 = new Thread(Methode); 开始 thread1.Start(); 等待完成 thread1.Join(); 优先级 thread1.Priority=ThreadPriority.Highest;//优先级和线程调度器时间片都会影响顺序 阅读全文
posted @ 2024-12-02 16:53 funtim 阅读(7) 评论(0) 推荐(0)