Draft Upgrade/it: Difference between revisions

From FreeCAD Documentation
(Created page with "# Selezionare uno o più oggetti che si desidera aggiornare # Premere il pulsante {{KEY/it|16px Assembla}} o premere i tasti {{KEY/it|U}} e {{KEY/i...")
(Created page with "== Opzioni ==")
Line 12: Line 12:
# Premere il pulsante {{KEY/it|[[Image:Draft Upgrade.png|16px]] Assembla}} o premere i tasti {{KEY/it|U}} e {{KEY/it|P}}
# Premere il pulsante {{KEY/it|[[Image:Draft Upgrade.png|16px]] Assembla}} o premere i tasti {{KEY/it|U}} e {{KEY/it|P}}


==Options==
== Opzioni ==


The selected objects are modified/upgraded according to the following conditions (in order):
The selected objects are modified/upgraded according to the following conditions (in order):

Revision as of 17:08, 13 February 2014

Assembla

Posizione nel menu
Draft → Assembla
Ambiente
Draft, Architettura
Avvio veloce
U P
Introdotto nella versione
-
Vedere anche
Scomponi

Descrizione

Questo strumento assembla in diversi modi gli oggetti selezionati (converte più oggetti in un unico oggetto di livello superiore). Se nessun oggetto è selezionato, viene chiesto di selezionarne uno.

Utilizzo

  1. Selezionare uno o più oggetti che si desidera aggiornare
  2. Premere il pulsante Template:KEY/it o premere i tasti Template:KEY/it e Template:KEY/it

Opzioni

The selected objects are modified/upgraded according to the following conditions (in order):

  • if there are more than one face in the selection, the faces are merged (union)
  • if there is only one face in the selection, nothing is done
  • if there is only one open wire in the selection, it gets closed
  • if there are only edges in the selection, all edges are joined into a wire (closed if possible)
  • if none of the above is possible, a compound object is created

Scripting

The upgrade tool can be used from python scripts and macros like this:

 Draft.upgrade(objects, delete=False, force=None)
  • Upgrades the given object(s) (can be an object or a list of objects).
  • If delete is True, old objects are deleted.
  • The force attribute can be used to force a certain way of upgrading. It can be: makeCompound, closeGroupWires, makeSolid, closeWire, turnToParts, makeFusion, makeShell, makeFaces, draftify, joinFaces, makeSketchFace, makeWires
  • Returns a dictionnary containing two lists, a list of new objects and a list of objects to be deleted

Some of the operations of the Upgrade tool can also be made with the Part Fuse or Draft Wire tools.

Example:

import Draft
mycircle = Draft.makeCircle(2)
face1 = Draft.upgrade([mycircle],True)