Difference between revisions of "Draft Downgrade/cs"
(Created page with "Vybrané objektu jsou upraveny/degradovány podle následujících podmínek (v tomot pořadí):: * pokud je vybrán pouze jeden objekt a ten obsahuje více než jednu plochu,...") |
(Updating to match new version of source page) |
||
(25 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | {{GuiCommand/cs|Name=Draft_Downgrade|Name/cs=Kreslení Degradace | + | <languages/> |
+ | {{Docnav | ||
+ | |[[Draft_Upgrade|Upgrade]] | ||
+ | |[[Draft_Scale|Scale]] | ||
+ | |[[Draft_Module|Draft]] | ||
+ | |IconL=Draft_Upgrade.svg | ||
+ | |IconR=Draft_Scale.svg | ||
+ | |IconC=Workbench_Draft.svg | ||
+ | }} | ||
+ | |||
+ | <div class="mw-translate-fuzzy"> | ||
+ | {{GuiCommand/cs|Name=Draft_Downgrade|Name/cs=Kreslení Degradace|Workbenches=[[Draft Module/cs|Kreslení]], [[Arch Module/cs|Architektura]]|MenuLocation=Draft → Downgrade|Shortcut=D N|SeeAlso=[[Draft Upgrade/cs|Draft Upgrade]]}} | ||
+ | </div> | ||
==Popis== | ==Popis== | ||
+ | <div class="mw-translate-fuzzy"> | ||
Tento nástroj degraduje vybrané objekty různými způsoby. Není-li vybrán žádný objekt, budete vyzvání k výběru objektu. | Tento nástroj degraduje vybrané objekty různými způsoby. Není-li vybrán žádný objekt, budete vyzvání k výběru objektu. | ||
+ | </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"> | ||
==Použití== | ==Použití== | ||
+ | </div> | ||
+ | <div class="mw-translate-fuzzy"> | ||
# Vyberte jeden nebo více objektů, které chcete degradovat | # Vyberte jeden nebo více objektů, které chcete degradovat | ||
− | # Stiskněte tlačítko {{KEY|[[Image:Draft Downgrade.png|16px]] [[Draft Downgrade|Degradace]]}} nebo klávesy {{KEY|D}} a {{KEY|N}} | + | # Stiskněte tlačítko {{KEY|[[Image:Draft Downgrade.png|16px]] [[Draft Downgrade/cs|Degradace]]}} nebo klávesy {{KEY|D}} a {{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. | ||
==Volby== | ==Volby== | ||
− | Vybrané objektu jsou upraveny/degradovány podle následujících podmínek (v | + | <div class="mw-translate-fuzzy"> |
+ | Vybrané objektu jsou upraveny/degradovány podle následujících podmínek (v tomto pořadí):: | ||
* pokud je vybrán pouze jeden objekt a ten obsahuje více než jednu plochu, stane se každá plocha samostatným objektem | * pokud je vybrán pouze jeden objekt a ten obsahuje více než jednu plochu, stane se každá plocha samostatným objektem | ||
− | * je-li více než jedna plocha ve výběru, následující | + | * je-li více než jedna plocha ve výběru, následující objekty jsou odebrány z prvního |
− | * je-li ve | + | * je-li ve výběru pouze jedna plocha, je zkonvertována na drát |
* jinak jsou všechny dráty nalezené ve výběru rozděleny do samostatných hran | * jinak jsou všechny dráty nalezené ve výběru rozděleny do samostatných hran | ||
+ | </div> | ||
− | == | + | ==Příklad== |
<gallery widths="300" heights="200"> | <gallery widths="300" heights="200"> | ||
− | File:Draft Downgrade 01.png| | + | File:Draft Downgrade 01.png|Kompletní tvar |
− | File:Draft Downgrade 02.png| | + | File:Draft Downgrade 02.png|Degradovaný tvar s rozpojenými a oddělenými plochami |
</gallery> | </gallery> | ||
− | == | + | <div class="mw-translate-fuzzy"> |
+ | ==Skriptování== | ||
+ | </div> | ||
− | + | <div class="mw-translate-fuzzy"> | |
+ | Nástroj Degradace může být použit ve skriptech Pythonu a v [[macros/cs|makrech]] použitím následující funkce: | ||
+ | </div> | ||
− | + | {{Code|code= | |
− | + | downgrade_list = downgrade(objects, delete=False, force=None) | |
− | + | addList, deleteList = downgrade(objects, delete=False, force=None) | |
+ | }} | ||
− | * | + | <div class="mw-translate-fuzzy"> |
− | * | + | * Degraduje zadaný objekt(y) (může to být objekt nebo seznam objektů). |
− | * | + | * Je-li delete True, staré objekty budou smazány. |
− | * | + | * Atribut force může být využit pro určení požadovaného způsobu degradace. Může to být: explode (oddělení), shapify, subtr(odebrání), splitFaces(rozděl plochy), cut2, getWire, splitWires(rozděl drát). |
+ | * Vrací katalog obsahující dva seznamy, seznam nových objektů a seznam objektů ke smazání | ||
+ | </div> | ||
− | + | Příklad: | |
− | + | {{Code|code= | |
− | + | 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) | ||
+ | }} | ||
+ | |||
+ | {{Docnav | ||
+ | |[[Draft_Upgrade|Upgrade]] | ||
+ | |[[Draft_Scale|Scale]] | ||
+ | |[[Draft_Module|Draft]] | ||
+ | |IconL=Draft_Upgrade.svg | ||
+ | |IconR=Draft_Scale.svg | ||
+ | |IconC=Workbench_Draft.svg | ||
+ | }} | ||
+ | |||
+ | {{Draft Tools navi{{#translation:}}}} | ||
+ | {{Userdocnavi{{#translation:}}}} | ||
+ | {{clear}} |
Latest revision as of 13:47, 1 December 2020
Umístění Menu |
---|
Draft → Downgrade |
Pracovní stoly |
Kreslení, Architektura |
Výchozí zástupce |
D N |
Představen ve verzi |
- |
Viz také |
Draft Upgrade |
Contents |
Popis
Tento nástroj degraduje vybrané objekty různými způsoby. Není-li vybrán žádný objekt, budete vyzvání k výběru objektu.
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
Použití
- Vyberte jeden nebo více objektů, které chcete degradovat
- Stiskněte tlačítko
Degradace nebo klávesy D a N
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.
Volby
Vybrané objektu jsou upraveny/degradovány podle následujících podmínek (v tomto pořadí)::
- pokud je vybrán pouze jeden objekt a ten obsahuje více než jednu plochu, stane se každá plocha samostatným objektem
- je-li více než jedna plocha ve výběru, následující objekty jsou odebrány z prvního
- je-li ve výběru pouze jedna plocha, je zkonvertována na drát
- jinak jsou všechny dráty nalezené ve výběru rozděleny do samostatných hran
Příklad
Skriptování
Nástroj Degradace může být použit ve skriptech Pythonu a v makrech použitím následující funkce:
downgrade_list = downgrade(objects, delete=False, force=None)
addList, deleteList = downgrade(objects, delete=False, force=None)
- Degraduje zadaný objekt(y) (může to být objekt nebo seznam objektů).
- Je-li delete True, staré objekty budou smazány.
- Atribut force může být využit pro určení požadovaného způsobu degradace. Může to být: explode (oddělení), shapify, subtr(odebrání), splitFaces(rozděl plochy), cut2, getWire, splitWires(rozděl drát).
- Vrací katalog obsahující dva seznamy, seznam nových objektů a seznam objektů ke smazání
Příklad:
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)
- Basics: Coordinates, Constraining, Snapping (Near, Extension, Parallel, Grid, Endpoint, Midpoint, Perpendicular, Angle, Center, Ortho, Intersection, Special, Dimensions, Working plane)
- Drawing: Line, Wire, Circle, Arc, Ellipse, Polygon, Rectangle, Text, Dimension, BSpline, Point, ShapeString, Facebinder, Bezier Curve, Label
- Modifying: Move, Rotate, Offset, Trimex, Upgrade, Downgrade, Scale, Edit, Wire to BSpline, Add point, Delete point, Shape 2D View, Draft to Sketch, Array, Path Array, Point Array, Clone, Drawing, Mirror, Stretch
- Utilities: Set working plane, Finish line, Close line, Undo line, Toggle construction mode, Toggle continue mode, Apply style, Toggle display mode, Add to group, Select group contents, Toggle snap, Toggle grid, Show snap bar, Heal, Flip Dimension, VisGroup, Slope, AutoGroup, Set Working Plane Proxy, Add to Construction group
- Additional: Preferences, Import-Export Preferences (DXF/DWG, SVG, OCA, DAT); Draft API

- Installation: Windows, Linux, Mac; Getting started
- Basics: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Workbenches: Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface workbench, TechDraw, Test Framework, Web
- Scripting: Introduction to Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, How to install macros, Gui Command, Units Modules: Builtin modules, Workbench creation, Installing more workbenches Meshes: Mesh Scripting, Mesh Module Parts: The Part Module, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt interface: PySide, Using the FreeCAD GUI, Dialog creation Parametric objects: Scripted objects Other: Code snippets, Line drawing function, Embedding FreeCAD, FreeCAD vector math library, Power users hub, Python, Macros, FreeCAD Scripting Basics, Topological data scripting