Arch Add/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "==Описание==")
(Created page with "Инструмент «Добавить» позволяет вам выполнять 4 вида операций: * Добавьте объекты shape...")
Line 10: Line 10:
==Описание==
==Описание==


Инструмент «Добавить» позволяет вам выполнять 4 вида операций:
The Add tool allows you to do 4 kinds of operations:
* Добавьте объекты [[Part Module | shape]] к компоненту Arch, такие как [[Стена арки]] или [[Структура арки]]. Эти объекты затем составляют часть компонента Arch и позволяют изменять его форму, но сохраняя ее базовые свойства, такие как ширина и высота
* Add [[Part Module|shape]]-based objects to an Arch component, such as a [[Arch Wall|wall]] or [[Arch Structure|structure]]. These objects make then part of the Arch component, and allow you to modify its shape but keeping its base properties such as width and height
* Добавьте элементы Arch, такие как [[Стены арки]] или [[Структура арки]], в объект арки на основе группы, такой как [[Arch Floor | floor]].
* Add Arch components, such as a [[Arch Wall|walls]] or [[Arch Structure|structures]], to a group-based arch object such as [[Arch Floor|floors]].
* Добавить [[Arch Axis | системы осей]] в [[Структура арки | структурные объекты]]
* Add [[Arch Axis|axis systems]] to [[Arch Structure|structural objects]]
* Add objects to [[Arch SectionPlane|section planes]]
* Добавить объекты в плоскость [[Arch SectionPlane]]


[[Image:Arch Add example.jpg|640px]]
[[Image:Arch Add example.jpg|640px]]

Revision as of 11:28, 29 November 2018

Arch Add

Системное название
Arch Add
Расположение в меню
Архитектура → Добавить компонент
Верстаки
Arch
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Удалить компонент

Описание

Инструмент «Добавить» позволяет вам выполнять 4 вида операций:

In the above image, a box is being added to a wall.

How to use

  1. Select the object(s) to be added, then the "host" object (the host object must be the last one you selected)
  2. Press the Add button

Scripting

The Add tool can by used in macros and from the python console by using the following function:

addComponents (objectsList,hostObject)
  • Adds the given object or the objects from the given list as components to the given host Object. Use this for example to add windows to a wall, or to add walls to a floor.
  • Returns nothing.

Example:

import FreeCAD, Arch, Draft, Part
line = Draft.makeWire([FreeCAD.Vector(0,0,0),FreeCAD.Vector(2,2,0)])
wall = Arch.makeWall(line)
box = Part.makeBox(1,1,1)
Arch.addComponents(box,wall)