Draft Drawing/tr: 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|[[Draft_Clone|Clone]]|[[Draft_Mirror|Mirror]]|[[Draft_Module|Draft_Module]]}}
{{docnav|[[Draft_Clone|Clone]]|[[Draft_Mirror|Mirror]]|[[Draft_Module|Draft]]|IconL=Draft_Clone.svg|IconC=Workbench_Draft.svg|IconR=Draft_Mirror.svg}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 69: Line 69:
}}
}}


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

{{Draft Tools navi}}
{{Draft Tools navi}}

{{Userdocnavi}}
{{Userdocnavi}}
{{clear}}
{{clear}}

Revision as of 14:06, 10 February 2019

Çizim

Menü konumu
Drafting → Drawing
Tezgahlar
Draft, Arch
Varsayılan kısayol
Hiçbiri
Versiyonda tanıtıldı
-
Ayrıca bkz
Hiçbiri

Description

The Drawing tool allows you to put selected objects on a drawing sheet created with the Drawing Workbench. If no sheet exists in the document, a default one will be created.

This tool works similarly to the Drawing View tool but is optimized for Draft Workbench objects, and can render 2D objects with a face filling. It can handle specific objects such as Draft Dimension and Draft Text, that the Drawing View tool cannot handle.

Draft object and dimensions imported into a Drawing page

How to use

  1. Select the objects that you wish to put on a drawing sheet.
  2. In the same selection, add the Drawing Workbench page object in which you want to draw the projection of the objects.
  3. Press the Draft Drawing button.

Notes:

  • The tool will work best with 2D objects from the Draft Workbench or Sketcher Workbench.
  • The selected object can also be an 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.

Options

There are no options for this tool. Either it works with the selected objects or not.

Properties

  • VeriFill Style: specifies the fill style "concrete", "square", "simple", "wood", "line", "cross", "woodgrain", or "shape color". This property only works for closed shapes.
  • VeriFont Size: specifies the font size of texts and dimensions.
  • VeriLine Width: specifies the line width of viewed objects in millimeters.

Scripting

See also: Draft API and FreeCAD Scripting Basics.

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

DrawingView = makeDrawingView(obj, page, lwmod=None, tmod=None, otherProjection=None)
  • Creates a DrawingView from obj in the specified page.
  • If given, lwmod modifies line weights in percentage, and tmod modifies text heights in percentage.

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 X and Y, which are given in millimeters, and 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.

Example:

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()