Draft Upgrade/es: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilización==")
(Created page with "# Selecciona uno o más objetos que desees promocionar # Presiona el botón {{KEY|16px Promocionar}} o presiona las teclas {{K...")
Line 9: Line 9:
==Utilización==
==Utilización==


# Selecciona uno o más objetos que desees promocionar
# Select one or more objects you wish to upgrade
# Press the {{KEY|[[Image:Draft Upgrade.png|16px]] [[Draft Upgrade]]}} button or press {{KEY|U}} then {{KEY|P}} keys
# Presiona el botón {{KEY|[[Image:Draft Upgrade.png|16px]] [[Draft Upgrade/es|Promocionar]]}} o presiona las teclas {{KEY|U}} y {{KEY|P}}


==Options==
==Options==

Revision as of 17:04, 13 February 2014

Draft Upgrade

Ubicación en el Menú
Croquis -> Promocionar
Entornos de trabajo
Croquis, Arquitectura
Atajo de teclado por defecto
U P
Introducido en versión
-
Ver también
Ninguno

Descripción

Esta herramienta promociona (convertir en un tipo de objeto más complejo) los objetos seleccionados de diversas formas. Si no se ha seleccionado ningún objeto, te invitará a seleccionar uno.

Utilización

  1. Selecciona uno o más objetos que desees promocionar
  2. Presiona el botón Promocionar o presiona las teclas U y P

Options

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)