Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Quickoffset 方法的 Region.Pocket 生成了一些刀具路径。但是,它作为 Icurve 中的线性路径集合返回。直线路径仅由直线运动组成,没有圆周运动。所以应该从一些点簇中检测到圆形的。它不是本地的。
有什么方法可以从线性路径对象获取圆或弧?或者将它们转换为线性和圆形。
法提赫。
如果你有一个点列表并且想要它们之间的曲线副直线这可以解决问题。
LinearPath myLinearPath = new LinearPath(); Curve curvePath = Curve.LocalInterpolation(myLinearPath.Vertices, true);