建筑添加工具
Jump to navigation
Jump to search
Arch
User documentation
Outdated translations are marked like this.
|
菜单位置 |
---|
Arch → Add |
所属工作台 |
Arch |
默认快捷键 |
沒有 |
版本介紹 |
- |
参阅 |
Arch Remove |
描述
借助本建筑添加工具您将能够实现以下4种操作:
- 将具有形状(shape)的对象添加至墙体(wall)或结构构件(structure)等建筑构件。这会令那些对象成为建筑构件的一部分,即令您在不改动宽高等属性的情况下,方便地修改其形状。
- 将墙体(wall)或结构构件(structure)等建筑构件添加至基于组织的楼层(floor)等建筑对象。
- 将建筑坐标系(axis system)添加至 结构构件(structural object)。
- 将对象添加至剖面(section plane)。
建筑移除工具与本工具功能相反。
将立方体添加至墙体,从而融为一体。
如何使用
- 先选择待添加的(若干)对象。最后选择主建筑对象。
- 按
Add按钮。
脚本
参阅: Arch API 与 FreeCAD Scripting Basics。
addComponents(objectsList, host)
- 将
objectsList
中的对象添加至host
对象。objectsList
可以是单个对象或一组对象。
示例:
import FreeCAD, Arch, Draft, Part
p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 2000, 0)
Line = Draft.makeWire([p1, p2])
Wall = Arch.makeWall(Line, width=150, height=2000)
p3 = FreeCAD.Vector(0, 2000, 0)
p4 = FreeCAD.Vector(3000, 0, 0)
Line2 = Draft.makeWire([p3, p4])
Wall2 = Arch.makeWall(Line2, width=150, height=2000)
FreeCAD.ActiveDocument.recompute()
Arch.addComponents(Wall2, Wall)
FreeCAD.ActiveDocument.recompute()
- Elements: Wall, Structure, Curtain Wall, Window, Roof, Space, Stairs, Equipment, Frame, Fence, Truss, Profile, Pipe, Pipe Connector
- Reinforcements: Straight Rebar, U-Shape Rebar, L-Shape Rebar, Stirrup, Bent-Shape Rebar, Helical Rebar, Column Reinforcement, Beam Reinforcement, Slab Reinforcement, Footing Reinforcement, Custom Rebar
- Panels: Panel, Panel Cut, Panel Sheet, Nest
- Materials: Material, Multi-Material
- Organization: Building Part, Project, Site, Building, Level, External reference, Section Plane, Schedule
- Axes: Axis, Axes system, Grid
- Modification: Cut with plane, Cut with line, Add component, Remove component, Survey
- Utilities: Component, Clone component, Split Mesh, Mesh to Shape, Select non-manifold meshes, Remove Shape from Arch, Close Holes, Merge Walls, Check, Toggle IFC Brep flag, 3 Views from mesh, Create IFC spreadsheet, Toggle Subcomponents
- Additional: Preferences, Import Export Preferences (IFC, DAE, OBJ, JSON, 3DS, SHP), IfcOpenShell, IfcPlusPlus, Arch API

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