Draft Downgrade/es: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
{{Docnav
|[[Draft_Upgrade|Upgrade]]
|[[Draft_Scale|Scale]]
|[[Draft_Module|Draft]]
|IconL=Draft_Upgrade.svg
|IconC=Workbench_Draft.svg
|IconR=Draft_Scale.svg
}}

<div class="mw-translate-fuzzy">
{{GuiCommand/es|Name=Draft Downgrade|Name/es=Draft Downgrade|Workbenches=[[Draft Module/es|Croquis]], [[Arch Module/es|Arquitectura]]|MenuLocation=Croquis -> Degradar|Shortcut=D N|Ver también=[[Draft Upgrade/es|Promocionar]]}}
{{GuiCommand/es|Name=Draft Downgrade|Name/es=Draft Downgrade|Workbenches=[[Draft Module/es|Croquis]], [[Arch Module/es|Arquitectura]]|MenuLocation=Croquis -> Degradar|Shortcut=D N|Ver también=[[Draft Upgrade/es|Promocionar]]}}
</div>


==Descripción==
==Descripción==


<div class="mw-translate-fuzzy">
Esta herramienta degrada (convirtiendo entidades complejas en otras más simples) los objetos seleccionado de diversos modos. Si no se ha seleccionado ningún objeto, te invitará a seleccionar uno.
Esta herramienta degrada (convirtiendo entidades complejas en otras más simples) los objetos seleccionado de diversos modos. Si no se ha seleccionado ningún objeto, te invitará a seleccionar uno.
</div>

The Downgrade tool performs things such as breaking faces, and deconstructing wires into their individual edges. It can cut a shape with another shape in similar way to {{Button|[[Image:Part_Cut.svg|16px]] [[Part Cut|Part Cut]]}}.

The counterpart to this tool is the {{Button|[[Image:Draft Upgrade.svg|16px]] [[Draft Upgrade|Draft Upgrade]]}} operation.


[[Image:Draft_Downgrade_example.jpg|400px]]
[[Image:Draft_Downgrade_example.jpg|400px]]
{{Caption|Face cut from another face; then face downgraded into a closed wire; then downgraded into individual lines}}


<div class="mw-translate-fuzzy">
==Utilización==
==Utilización==
</div>


<div class="mw-translate-fuzzy">
# Selecciona uno o más objetos que desees degradar
# Selecciona uno o más objetos que desees degradar
# Presiona el botón {{KEY|[[Image:Draft Downgrade.png|16px]] [[Draft Downgrade/es|Degradar]]}} o presiona las teclas {{KEY|D}} y {{KEY|N}}
# Presiona el botón {{KEY|[[Image:Draft Downgrade.png|16px]] [[Draft Downgrade/es|Degradar]]}} o presiona las teclas {{KEY|D}} y {{KEY|N}}
</div>

The selected objects are modified or downgraded, according to the following conditions, in order:
# If only one object is selected and it contains more than one face, each face becomes a separate object.
# If there are more than one face in the selection, the subsequent objects are subtracted from the first one.
# If there is only one face in the selection, it gets converted into a wire.
# Otherwise all wires found in the selection are exploded into single edges.


==Opciones==
==Opciones==


<div class="mw-translate-fuzzy">
Los objetos seleccionados son modificados/degradados, de acuerdo con las siguientes condiciones lista (en orden):
Los objetos seleccionados son modificados/degradados, de acuerdo con las siguientes condiciones lista (en orden):
* Si sólo está seleccionado un objeto y contiene más de una cara, cada cara se convierte en un objeto independiente
* Si sólo está seleccionado un objeto y contiene más de una cara, cada cara se convierte en un objeto independiente
Line 19: Line 49:
* si sólo hay una cara, se convierte en un contorno (wire)
* si sólo hay una cara, se convierte en un contorno (wire)
* en otro caso todos los contornos se descomponen en segmentos individuales
* en otro caso todos los contornos se descomponen en segmentos individuales
</div>


==Ejemplo==
==Ejemplo==
Line 28: Line 59:


==Scripting==
==Scripting==
{{Emphasis|See also:}} [[Draft API|Draft API]] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].


The Downgrade tool can be used in python scripts and [[macros]] by using the following function:
The Downgrade tool can be used in [[macros|macros]] and from the [[Python|Python]] console by using the following function:


{{Code|code=
<syntaxhighlight>
downgrade (objects [delete], [force])
downgrade_list = downgrade(objects, delete=False, force=None)
addList, deleteList = downgrade(objects, delete=False, force=None)
</syntaxhighlight>
}}


* Downgrades the given object(s) (can be an object or a list of objects).
* Downgrades the given {{incode|objects}}, which can be a single object or a list of objects.
* If delete is True, old objects are deleted.
* If {{incode|delete}} is {{incode|True}}, old objects are deleted.
* The force attribute can be used to force a certain way of downgrading. It can be: explode, shapify, subtr, splitFaces, cut2, getWire, splitWires.
* If {{incode|force}} is given, it is the internal function to call to force a certain way of downgrading. It can be: {{incode|"explode"}}, {{incode|"shapify"}}, {{incode|"subtr"}}, {{incode|"splitFaces"}}, {{incode|"cut2"}}, {{incode|"getWire"}}, or {{incode|"splitWires"}}.
* Returns a dictionnary containing two lists, a list of new objects and a list of objects to be deleted
* {{incode|upgrade_list}} is returned, which is a list containing two lists: a list of new objects ({{incode|addList}}) and a list of objects to be deleted ({{incode|deleteList}}).


Ejemplo:
Ejemplo:


{{Code|code=
<syntaxhighlight>
import FreeCADGui,Draft
import FreeCAD, Draft
selection = FreeCADGui.Selection.getSelection()
Draft.downgrade(selection)
</syntaxhighlight>


# Create an union
<languages/>
Circle = Draft.makeCircle(1000)
Rectangle = Draft.makeRectangle(2000, 800)

addList1, deleteList1 = Draft.upgrade([Circle, Rectangle], delete=True)
union = addList1[0]

# Downgrade the union twice
addList2, deleteList2 = Draft.downgrade(union, delete=False)
wire = addList2[0]

list_edges, deleteList3 = Draft.downgrade(wire, delete=False)

# Insert a solid box
Box = FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
Box.Length = 2300
Box.Width = 800
Box.Height = 1000

list_faces, deleteList4 = Draft.downgrade(Box, delete=True)
}}

{{Docnav
|[[Draft_Upgrade|Upgrade]]
|[[Draft_Scale|Scale]]
|[[Draft_Module|Draft]]
|IconL=Draft_Upgrade.svg
|IconC=Workbench_Draft.svg
|IconR=Draft_Scale.svg
}}

{{Draft Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 03:58, 21 February 2020

Draft Downgrade

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

Descripción

Esta herramienta degrada (convirtiendo entidades complejas en otras más simples) los objetos seleccionado de diversos modos. Si no se ha seleccionado ningún objeto, te invitará a seleccionar uno.

The Downgrade tool performs things such as breaking faces, and deconstructing wires into their individual edges. It can cut a shape with another shape in similar way to Part Cut.

The counterpart to this tool is the Draft Upgrade operation.

Face cut from another face; then face downgraded into a closed wire; then downgraded into individual lines

Utilización

  1. Selecciona uno o más objetos que desees degradar
  2. Presiona el botón Degradar o presiona las teclas D y N

The selected objects are modified or downgraded, according to the following conditions, in order:

  1. If only one object is selected and it contains more than one face, each face becomes a separate object.
  2. If there are more than one face in the selection, the subsequent objects are subtracted from the first one.
  3. If there is only one face in the selection, it gets converted into a wire.
  4. Otherwise all wires found in the selection are exploded into single edges.

Opciones

Los objetos seleccionados son modificados/degradados, de acuerdo con las siguientes condiciones lista (en orden):

  • Si sólo está seleccionado un objeto y contiene más de una cara, cada cara se convierte en un objeto independiente
  • Si hay más de una cara en la selección, las caras resultantes se eliminan de la primera
  • si sólo hay una cara, se convierte en un contorno (wire)
  • en otro caso todos los contornos se descomponen en segmentos individuales

Ejemplo

Scripting

See also: Draft API and FreeCAD Scripting Basics.

The Downgrade tool can be used in macros and from the Python console by using the following function:

downgrade_list = downgrade(objects, delete=False, force=None)
addList, deleteList = downgrade(objects, delete=False, force=None)
  • Downgrades the given objects, which can be a single object or a list of objects.
  • If delete is True, old objects are deleted.
  • If force is given, it is the internal function to call to force a certain way of downgrading. It can be: "explode", "shapify", "subtr", "splitFaces", "cut2", "getWire", or "splitWires".
  • upgrade_list is returned, which is a list containing two lists: a list of new objects (addList) and a list of objects to be deleted (deleteList).

Ejemplo:

import FreeCAD, Draft

# Create an union
Circle = Draft.makeCircle(1000)
Rectangle = Draft.makeRectangle(2000, 800)

addList1, deleteList1 = Draft.upgrade([Circle, Rectangle], delete=True)
union = addList1[0]

# Downgrade the union twice
addList2, deleteList2 = Draft.downgrade(union, delete=False)
wire = addList2[0]

list_edges, deleteList3 = Draft.downgrade(wire, delete=False)

# Insert a solid box
Box = FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
Box.Length = 2300
Box.Width = 800
Box.Height = 1000

list_faces, deleteList4 = Draft.downgrade(Box, delete=True)