Draft WireToBSpline/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "L'outil {{KEY|16px|text-top=Wire en Bspline|link=Draft WireToBSpline/fr Wire en Bspline}}, converti un {{KEY|[[Ima...")
(Created page with "==Utilisation==")
Line 7: Line 7:
[[Image:Draft Wire2BSpline example.jpg|400px]]
[[Image:Draft Wire2BSpline example.jpg|400px]]


==How to use==
==Utilisation==


# Select a [[Draft Wire|wire]] or a [[Draft BSpline|BSpline]]
# Select a [[Draft Wire|wire]] or a [[Draft BSpline|BSpline]]

Revision as of 15:55, 14 February 2014

Draft_WireToBSpline

Emplacement du menu
Drafting → Wire to BSpline
Ateliers
Draft, Arch
Raccourci par défaut
Aucun
Introduit dans la version
-
Voir aussi
Aucun

Description

L'outil text-top=Wire en Bspline Wire en Bspline, converti un text-top=Ligne à points multiples Wire en text-top=Courbe B-Spline (Bézier) B-Spline, et vice-versa.

Utilisation

  1. Select a wire or a BSpline
  2. Press the Draft WireToBSpline button

Options

  • The original object will not be deleted after the operation, you must delete it manually if you wish so.

Scripting

Not available, but creating a new object with the points from another one is easy, for example:

  • If the active object is a wire:
 import FreeCAD,Draft
 points = FreeCAD.ActiveDocument.ActiveObject.Points
 Draft.makeBSpline(points)
  • if the active object is a bspline
 import FreeCAD,Draft
 points = FreeCAD.ActiveDocument.ActiveObject.Points
 Draft.makeWire(points)