|
メニュー位置 |
---|
Drafting -> Wire to BSpline |
ワークベンチ |
製図, 建築 |
デフォルトのショートカット |
None |
参照 |
None |
Contents |
利用できませんが、元のオブジェクトの点から新しいオブジェクトを作成するのは簡単です。 例:
# アクティブなオブジェクトがワイヤーの場合 import FreeCAD,Draft points = FreeCAD.ActiveDocument.ActiveObject.Points Draft.makeBSpline(points)
# アクティブなオブジェクトがB-スプラインの場合 import FreeCAD,Draft points = FreeCAD.ActiveDocument.ActiveObject.Points Draft.makeWire(points)