Draft Draft vers Esquisse

From FreeCAD Documentation
Revision as of 08:09, 22 August 2019 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Draft Draft2Sketch

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

Description

Cet outil converti un objet Draft en objet Sketcher, et vice-versa.

Utilisation

  1. Sélectionnez un objet Draft ou un objet Sketch.
  2. Pressez le bouton Draft Draft2Sketch.

Notes:

  • If you convert a Draft Wire, the resulting sketch will use point constraints for the nodes.
  • If you convert a Draft Rectangle, the resulting sketch will use point constraints for the corners, and horizontal and vertical constraints for the edges.
  • If you convert a Draft BezCurve, the resulting sketch will be approximated by a Sketcher BSpline, as the Sketcher Workbench doesn't support Bezier curves currently.
  • Non-Draft objects that are totally planar will also get converted to sketches.

Limitations

The conversion of an object that cannot be represented with a combination of straight lines, circular arcs, and B-Splines will usually fail, that is, the item will not appear in the sketch.

In the past, a Draft BSpline couldn't be converted directly to a sketch. A tool to perform this conversion was developed for the KicadStepUp Workbench, which would take a Draft BSpline and convert it into a series of Sketcher Arcs. See the forum thread BSplines to Shape2DView and Sketcher for more information.

Since FreeCAD 0.17, the conversion from Draft BSpline to Sketcher BSpline is possible. However, converting a spline to a series of arcs may still be useful for exporting geometry to applications that don't support B-Splines, like KiCad.

Options

  • Si vous convertissez un Wire (ligne multiple), une contrainte sera appliquée aux points et aux nœuds.
  • Si vous convertissez un Rectangle, une contrainte sera appliquée, sur les coins, les points les contraintes horizontales/verticales et les bords.
  • Les objets Non-Draft, qui sont totalement plans, seront également converti en sketch.

There are no options for this tool. Either it works with the selected object or not.

Script

Non disponible, voir la documentation Sketcher Module pour créer un script de sketch.

Internally the Draft2Sketch tool uses two methods to convert back and forth from Draft to Sketch.

Convert objects to Sketch:

Draft.makeSketch(objectslist, autoconstraints=False, addTo=None, delete=False, name="Sketch", radiusPrecision=-1)

Convert objects to Draft:

Draft.draftify(objectslist, makeblock=False, delete=True)