Difference between revisions of "Draft Downgrade/cs"
(Created page with "{{GuiCommand/cs|Name=Draft_Downgrade|Name/cs=Kreslení Degradace/cs|Workbenches=Kreslení, Architektura|MenuLocation=Draft -> Downgrade|Shortc...") |
(Updating to match new version of source page) |
||
(27 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|IconC=Workbench_Draft.svg|IconR=Draft_Scale.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== | ||
− | = | + | <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. | ||
+ | </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 [[Part Cut]]. | |
+ | |||
+ | The counterpart to this tool is the [[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}} | ||
− | == | + | ==Použití== |
− | # | + | <div class="mw-translate-fuzzy"> |
− | # | + | # Vyberte jeden nebo více objektů, které chcete degradovat |
+ | # 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== | |
− | |||
− | |||
− | |||
− | |||
− | == | + | <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 | ||
+ | * 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 | ||
+ | </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|IconC=Workbench_Draft.svg|IconR=Draft_Scale.svg}} | ||
+ | |||
+ | {{Draft Tools navi}} | ||
+ | |||
+ | {{Userdocnavi}} | ||
+ | {{clear}} |
Revision as of 20:18, 11 February 2019
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, Polyline, Fillet, Circle, Arc, Arc 3 points, Ellipse, Polygon, Rectangle, Text, Dimension, BSpline, Point, ShapeString, Facebinder, Cubic Bezier Curve, Bezier Curve, Label
- Modifying: Move, Rotate, Offset, Trimex, Join, Split, Upgrade, Downgrade, Scale, Edit, SubelementHighlight, Wire to BSpline, Add point, Delete point, Shape 2D View, Draft to Sketch, Array, LinkArray, Polar Array, Circular Array, Path Array, Path LinkArray, 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

- Getting started
- Installation: Download, Windows, Linux, Mac, Additional components, Docker, AppImage, Ubuntu Snap
- Basics: About FreeCAD, Interface, Mouse navigation, Selection methods, Object name, Preferences, Workbenches, Document structure, Properties; Help FreeCAD, Donate
- Help: Tutorials, Video tutorials
- Workbenches: Std Base; Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Points, Raytracing, Reverse Engineering, Sketcher, Spreadsheet, Start, Surface, TechDraw, Test Framework, Web
- Deprecated or unmaintained workbenches: Complete, Drawing, Robot
- Hubs: User hub, Power users hub, Developer hub