Draft Layer
|
Menu location |
---|
Utilities → Layer |
Workbenches |
Draft |
Default shortcut |
None |
Introduced in version |
0.19 |
See also |
Draft AutoGroup, Draft LayerManager |
Description
The Draft Layer command creates a Draft Layer. A layer is a special kind of group with a number of visual properties. These properties, and any changes to them, are propagated to the objects placed inside the layer. The layers themselves are put in another special group: the Draft LayerContainer.
Usage
- There are several ways to invoke the command:
- If it does not exist the layer container is created first.
- A layer is created and put in the layer container.
- Optionally change the properties of the layer.
- Optionally put objects in the layer by drag and dropping them on the layer in the Tree view. Objects can also be put in a layer by editing the DataGroup property of the layer.
- Optionally activate the layer.
Layer container options
For a Draft LayerContainer these additional options are available in the Tree view context menu:
- The base label of a layer is its DataLabel stripped of trailing digits and spaces. All layers with the same base label are merged into a single layer with the DataLabel set to that base label.
Layer options
For a Draft Layer these additional options are available in the Tree view context menu:
Activate this layer: activates the selected layer.
Select layer contents: selects the objects inside the selected layer.
Drag and drop behavior
If you drop an object from a Std Group, or a group-like object such as an Arch BuildingPart, on a layer in the Tree view, it is not removed from the group, and vice versa. To remove an object from a layer it must be dropped on another layer or on the document node. There is no need to hold down the Ctrl key when dragging from or dropping on a layer.
Notes
- A new layer can also be created with the Draft AutoGroup command.
- The BIM Workbench offers a complete layer manager tool which will eventually be included in the Draft Workbench.
Properties
See also: Property editor.
A Draft Layer object is derived from an App FeaturePython object and inherits all its properties. It also has the following additional properties:
Data
Layer
- DataGroup (
LinkList
): specifies the objects that are inside the layer.
View
Layer
The properties in this section are applied to objects that are put inside the layer. And any changes to these properties are propagated to them. For two properties, ViewLine Color and ViewShape Color, this behavior is optional.
- ViewDraw Style (
Enumeration
): specifies the draw style of the layer:Solid
,Dashed
,Dotted
orDashdot
- ViewLine Color (
Color
): specifies the line color of the layer. - ViewLine Width (
Float
): specifies the line width of the layer. - ViewOverride Line Color Children (
Bool
): specifies if changes to the ViewLine Color of the layer are propagated to the objects inside the layer. - ViewOverride Shape Appearance Children (
Bool
): specifies if changes to the ViewShape Appearance of the layer are propagated to the objects inside the layer. introduced in version 1.0 - ViewShape Appearance (
MaterialList
): specifies the shape appearance of the layer. introduced in version 1.0 - View (hidden)Shape Color (
Color
): specifies the shape color of the layer. It is kept synchronized with the Diffuse Color of the ViewShape Appearance. - ViewTransparency (
Percent
): specifies the transparency of the layer. It is kept synchronized with the Transparency of the ViewShape Appearance.
- ViewLine Print Color (
Color
): specifies the line print color of the layer. - ViewUse Print Color (
Bool
): specifies if the ViewLine Print Color of the layer is used when a TechDraw DraftView is created from the objects inside the layer.
Scripting
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
To create a Draft Layer use the make_layer
method of the Draft module. To add objects to, or remove objects from, a layer change its Group
property.
import FreeCAD as App
import Draft
doc = App.newDocument()
layer = Draft.make_layer(line_color=(1.0, 0.0, 0.0, 0.0),
shape_color=(1.0, 1.0, 0.0, 0.0))
polygon1 = Draft.make_polygon(5, radius=1000)
polygon2 = Draft.make_polygon(3, radius=500)
polygon3 = Draft.make_polygon(6, radius=220)
layer.Group = [polygon1, polygon2, polygon3]
doc.recompute()
- Drafting: Line, Polyline, Fillet, Arc, Arc by 3 points, Circle, Ellipse, Rectangle, Polygon, B-spline, Cubic Bézier curve, Bézier curve, Point, Facebinder, ShapeString, Hatch
- Annotation: Text, Dimension, Label, Annotation styles, Annotation scale
- Modification: Move, Rotate, Scale, Mirror, Offset, Trimex, Stretch, Clone, Array, Polar array, Circular array, Path array, Path link array, Point array, Point link array, Edit, Subelement highlight, Join, Split, Upgrade, Downgrade, Wire to B-spline, Draft to sketch, Set slope, Flip dimension, Shape 2D view
- Draft Tray: Select plane, Set style, Toggle construction mode, AutoGroup
- Snapping: Snap lock, Snap endpoint, Snap midpoint, Snap center, Snap angle, Snap intersection, Snap perpendicular, Snap extension, Snap parallel, Snap special, Snap near, Snap ortho, Snap grid, Snap working plane, Snap dimensions, Toggle grid
- Miscellaneous: Apply current style, Layer, Manage layers, Add a new named group, Move to group, Select group, Add to construction group, Toggle normal/wireframe display, Create working plane proxy, Heal, Show snap toolbar
- Additional: Constraining, Pattern, Preferences, Import Export Preferences, DXF/DWG, SVG, OCA, DAT
- Context menu:
- Layer container: Merge layer duplicates, Add new layer
- Layer: Activate this layer, Select layer contents
- Text: Open hyperlinks
- Wire: Flatten
- Working plane proxy: Write camera position, Write objects state

- 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, Assembly, BIM, CAM, Draft, FEM, Inspection, Material, Mesh, OpenSCAD, Part, PartDesign, Points, Reverse Engineering, Robot, Sketcher, Spreadsheet, Surface, TechDraw, Test Framework
- Hubs: User hub, Power users hub, Developer hub