Arch Add

From FreeCAD Documentation
Revision as of 08:53, 7 December 2018 by Luc (talk | contribs) (Created page with "==スクリプト処理==")

Arch Add

Menu location
Arch → Add
Workbenches
Arch
Default shortcut
None
Introduced in version
-
See also
Arch Remove

Template:GuiCommand/jp

説明

Addツールは2種類の操作を提供します:

  • シェイプベースのオブジェクトを骨組みといった Archコンポーネントに追加します。これらのオブジェクトはArchコンポーネントのパーツとなってその高さや厚みといった基本プロパティを保持するだけでなく、その形状を変更する機能を提供します。
  • 骨組みセルあるいはなどのセルベースのオブジェクトといったArchコンポーネントを追加します。

上の図では壁に直方体が追加されています。

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

使用方法

  • 追加するオブジェクト(複数可)を選択してから"ホスト"となるオブジェクトを選択してください(最後に選択したものがホストオブジェクトになります)
  • Addボタンを押してください

スクリプト処理

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)