Výkres
Umístění Menu |
---|
Drafting → Drawing |
Pracovní stoly |
Kreslení, Architektura |
Výchozí zástupce |
Nikdo |
Představen ve verzi |
- |
Viz také |
Nikdo |
Contents |
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 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
Použití
- Vyberte objekty, které chcete umístit na výkres
- Stiskněte tlačítko
Výkres
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.
Volby
- Vyberete objekt, který chcete umístit na výkres. Nástroj bude nejlépe pracovat s plochými 2D objekty z modulů Kreslení nebo Skicář.
- Je-li vybraný objekt 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.
Vlastnosti
- DataFill Style: Pro uzavřené tvary umožňuje specifikovat jeden z defaultních stylů pro zaplňování výkresů nebo použití barev tvaru.
- DataFont Size: Umožňuje specifikovat velikost fontu pro texty a kóty.
- DataLine Width: Umožňuje specifikovat tloušťku čar zobrazených objektů.
Skriptování
Nástroj Výkres může být použit v makrech a z konzoly Pythonu použitím následující funkce:
DrawingView = makeDrawingView(obj, page, lwmod=None, tmod=None, otherProjection=None)
- Přidá pohled daného objektu na danou stránku.
- Vrací vytvořený objekt pohledu.
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.
Příklad:
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()
- 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