Draft Drawing/cs: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
{{Docnav
|
|[[Draft_Clone|Clone]]
|
|[[Draft_Mirror|Mirror]]
|[[Draft_Module|Draft]]
|[[Draft_Module|Draft]]
|IconL=Draft_Clone.svg
|IconL=
|IconR=
|IconC=Workbench_Draft.svg
|IconC=Workbench_Draft.svg
|IconR=Draft_Mirror.svg
}}
}}


{{VeryImportantMessage|THIS COMMAND IS OBSOLETE<br>

{{VeryImportantMessage|Development of the [[Drawing Workbench|Drawing Workbench]] stopped in FreeCAD 0.16; the new [[TechDraw Workbench|TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.}}
It works with the [[Drawing_Module|Drawing Workbench]] which was deprecated in FreeCAD version 0.17 when the [[TechDraw_Module|TechDraw Workbench]] was introduced. Use that workbench and the [[TechDraw_DraftView|TechDraw DraftView]] command instead.}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 22: Line 23:
</div>
</div>


This tool works similarly to the [[Drawing View|Drawing View]] tool but is optimized for [[Draft Workbench|Draft Workbench]] objects, and can render 2D objects with a face filling. It can handle specific objects such as [[Draft Dimension|Draft Dimension]] and [[Draft Text|Draft Text]], that the [[Drawing View|Drawing View]] tool cannot handle.
This command is similar to the [[Drawing_View|Drawing View]] command but is optimized for [[Draft_Module|Draft]] objects. Contrary to that command, it can handle specific objects such as [[Draft_Dimension|Draft Dimensions]] and [[Draft_Text|Draft Texts]], and it can render faces.

This command is now obsolete. Use the [[TechDraw_Module|TechDraw Workbench]] and the [[TechDraw_DraftView|TechDraw DraftView]] command instead.


[[Image:Draft drawing example.jpg|640px]]
[[Image:Draft drawing example.jpg|640px]]
{{Caption|Draft object and dimensions imported into a Drawing page}}
{{Caption|On the left the selected Draft objects. On the right the created drawing views.}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 36: Line 39:
</div>
</div>


==Notes==
* The tool will work best with 2D objects from the [[Draft Workbench|Draft Workbench]] or [[Sketcher Workbench|Sketcher Workbench]].
* The selected object can also be an [[Arch SectionPlane|Arch SectionPlane]], which will show the elements viewed by that plane.
* If there is no existing page, a new one will be created.
* If no page was selected but there is at least one in the document, the first page found will be used to put the projections.
* If you select a sheet and the objects already projected on that sheet, the projections will be updated.

==Volby==

<div class="mw-translate-fuzzy">
* Vyberete objekt, který chcete umístit na výkres. Nástroj bude nejlépe pracovat s plochými 2D objekty z modulů [[Draft Module/cs|Kreslení]] nebo [[Sketcher Workbench/cs|Skicář]].
* Je-li vybraný objekt [[Arch SectionPlane/cs|Architektura Rovina řezu]], vytvoří tento nástroj další pohled této roviny řezu.
* Ve stejném výběru přidejte objekt stránky, na který chcete vybraný objekt vykreslit. Jestliže stránka neexistuje, bude nově vytvořena. Jestliže jste stránku nevybrali, ale alespoň jedna už v dokumentu je, bude první nalezená použita pro vykreslení.
* Jestliže jste vybrali existující stránku a objekty, které už ve stránce jsou (např. objekt "Obdélník" již zde je jako objekt "PohledObdélník"), budou nahrazeny. To Vám umožňuje jednoduše vybrat všechny objekty a poslat je na existující stránku, čímž budou na stránce aktualizovány i již dříve vložené objekty.
</div>

==Vlastnosti==

<div class="mw-translate-fuzzy">
* {{PropertyData|Fill Style}}: Pro uzavřené tvary umožňuje specifikovat jeden z defaultních stylů pro zaplňování výkresů nebo použití barev tvaru.
* {{PropertyData|Font Size}}: Umožňuje specifikovat velikost fontu pro texty a kóty.
* {{PropertyData|Line Width}}: Umožňuje specifikovat tloušťku čar zobrazených objektů.
</div>

<div class="mw-translate-fuzzy">
==Skriptování==
</div>

<div class="mw-translate-fuzzy">
Nástroj Výkres může být použit v [[macros/cs|makrech]] a z konzoly Pythonu použitím následující funkce:
</div>

{{Code|code=
DrawingView = makeDrawingView(obj, page, lwmod=None, tmod=None, otherProjection=None)
}}

<div class="mw-translate-fuzzy">
* Přidá pohled daného objektu na danou stránku.
* Vrací vytvořený objekt pohledu.
</div>

The attributes of the view usually need to be modified so that it is displayed correctly in the drawing page. In particular, the position is controlled by {{incode|X}} and {{incode|Y}}, which are given in millimeters, and {{incode|Scale}} is important to correctly fit the projected shape in the page. The scale usually ranges from 1 to 0.25 (1:1 to 1:4) for small solids, and from 0.02 to 0.01 (1:50 to 1:100) for typical architectural elements.

Příklad:

{{Code|code=
import FreeCAD, Draft, Drawing

obj = Draft.makePolygon(5, 1000)
page = FreeCAD.ActiveDocument.addObject('Drawing::FeaturePage', 'Page')
page.Template = FreeCAD.getResourceDir() + 'Mod/Drawing/Templates/A3_Landscape.svg'

View = Draft.makeDrawingView(obj, page)
View.Scale = 0.02
FreeCAD.ActiveDocument.recompute()

View.X = 200
View.Y = 150
FreeCAD.ActiveDocument.recompute()
}}


{{Docnav
{{Docnav
|
|[[Draft_Clone|Clone]]
|
|[[Draft_Mirror|Mirror]]
|[[Draft_Module|Draft]]
|[[Draft_Module|Draft]]
|IconL=Draft_Clone.svg
|IconL=
|IconR=
|IconC=Workbench_Draft.svg
|IconC=Workbench_Draft.svg
|IconR=Draft_Mirror.svg
}}
}}


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

Revision as of 07:15, 11 August 2021

THIS COMMAND IS OBSOLETE
It works with the Drawing Workbench which was deprecated in FreeCAD version 0.17 when the TechDraw Workbench was introduced. Use that workbench and the TechDraw DraftView command instead.

Draft Drawing

Umístění Menu
Drafting → Drawing
Pracovní stoly
Kreslení, Architektura
Výchozí zástupce
Nikdo
Představen ve verzi
-
Viz také
Nikdo

Popis

Tento nástroj umožňuje umístit vybrané objekty na svg Výkresy. Jestliže v dokumentu není žádná šablona, bude použita defaultní.

This command is similar to the Drawing View command but is optimized for Draft objects. Contrary to that command, it can handle specific objects such as Draft Dimensions and Draft Texts, and it can render faces.

This command is now obsolete. Use the TechDraw Workbench and the TechDraw DraftView command instead.

On the left the selected Draft objects. On the right the created drawing views.

Použití

  1. Vyberte objekty, které chcete umístit na výkres
  2. Stiskněte tlačítko Výkres