Draft Layer/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/ru |Name=Draft Layer |Name/ru=Draft Layer |Workbenches=Draft, Arch |MenuLocation=Draft → Utilities → Layer |Version=0.1...")
(Created page with "==Описание==")
Line 19: Line 19:
}}
}}


==Описание==
==Description==


The [[Draft Layer|Draft Layer]] creates a special kind of group that controls the visual properties of objects placed inside of it. By changing the properties of the Layer, such as line width, line color, shape color and transparency, the changes are propagated to the objects that make use of the Layer property.
The [[Draft Layer|Draft Layer]] creates a special kind of group that controls the visual properties of objects placed inside of it. By changing the properties of the Layer, such as line width, line color, shape color and transparency, the changes are propagated to the objects that make use of the Layer property.

Revision as of 19:03, 9 May 2020


Draft Layer

Системное название
Draft Layer
Расположение в меню
Draft → Utilities → Layer
Верстаки
Draft, Arch
Быстрые клавиши
Нет
Представлено в версии
0.19
См. также
Нет

Описание

The Draft Layer creates a special kind of group that controls the visual properties of objects placed inside of it. By changing the properties of the Layer, such as line width, line color, shape color and transparency, the changes are propagated to the objects that make use of the Layer property.

This tool replaces Draft VisGroup starting from FreeCAD 0.19.

Usage

  1. Go to the menu Draft → Utilities → Layer.
  2. Change the desired view properties of the Layer.

Properties

  • ДанныеGroup: specifies the elements that are part of the group.
  • Visual properties that can be changed that are propagated to the objects: ВидDrawing Style, ВидLine Color, ВидLine Width, ВидShape Color, ВидTransparency, and ВидVisibility.

Scripting

See also: FreeCAD Scripting Basics.

To add or remove objects from the layer, simply overwrite its Group attribute.

group = App.ActiveDocument.Layer.Group
group.append(App.ActiveDocument.Wire)
App.ActiveDocument.Layer.Group = group