Difference between revisions of "Arch MergeWalls"
Renatorivo (talk | contribs) (Marked this version for translation) |
Renatorivo (talk | contribs) (Marked this version for translation) |
||
(13 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <languages/> | |
<translate> | <translate> | ||
+ | <!--T:5--> | ||
+ | {{docnav|[[Arch_CloseHoles|Close Holes]]|[[Arch_Check|Check]]|[[Arch_Module|Arch]]|IconL=Arch_CloseHoles.svg |IconC=Workbench_Arch.svg |IconR=Arch_Check.svg}} | ||
+ | |||
<!--T:1--> | <!--T:1--> | ||
− | {{GuiCommand|Name=Arch MergeWalls|Workbenches=[[Arch Module|Arch]]| | + | {{GuiCommand |
+ | |Name=Arch MergeWalls | ||
+ | |MenuLocation=Arch → Utilities → Merge Walls | ||
+ | |Workbenches=[[Arch Module|Arch]] | ||
+ | |SeeAlso=[[Arch Wall]] | ||
+ | }} | ||
==Description== <!--T:2--> | ==Description== <!--T:2--> | ||
+ | <!--T:6--> | ||
+ | The [[Arch MergeWalls|MergeWalls]] tool fuses two or more selected [[Arch Wall]]s. | ||
+ | |||
+ | ==How to use== <!--T:3--> | ||
+ | <!--T:7--> | ||
+ | # Select two or more walls. | ||
+ | # Go to the menu {{MenuCommand|Arch → Utilities → [[Image:Arch MergeWalls.svg|16px]] Merge Walls}}. | ||
− | == | + | == Scripting == <!--T:8--> |
+ | {{Emphasis|See also:}} [[Arch API]] and [[FreeCAD Scripting Basics]]. | ||
+ | |||
+ | <!--T:9--> | ||
+ | This tool can be used in [[macros]] and from the [[Python]] console by using the following function: | ||
+ | </translate> | ||
+ | {{Code|code= | ||
+ | base = joinWalls(walls, delete=False) | ||
+ | }} | ||
+ | <translate> | ||
+ | |||
+ | <!--T:10--> | ||
+ | Example: | ||
+ | </translate> | ||
+ | {{Code|code= | ||
+ | import FreeCAD, Draft, Arch | ||
+ | |||
+ | p1 = FreeCAD.Vector(0, 0, 0) | ||
+ | p2 = FreeCAD.Vector(2000, 0, 0) | ||
+ | baseline = Draft.makeLine(p1, p2) | ||
+ | Wall1 = Arch.makeWall(baseline, length=None, width=150, height=2000) | ||
+ | FreeCAD.ActiveDocument.recompute() | ||
+ | Wall2 = Arch.makeWall(None, length=2000, width=200, height=1000) | ||
+ | FreeCAD.ActiveDocument.recompute() | ||
+ | base = Arch.joinWalls([Wall1, Wall2]) | ||
+ | }} | ||
+ | <translate> | ||
+ | <!--T:11--> | ||
+ | {{docnav|[[Arch_CloseHoles|Close Holes]]|[[Arch_Check|Check]]|[[Arch_Module|Arch]]|IconL=Arch_CloseHoles.svg |IconC=Workbench_Arch.svg |IconR=Arch_Check.svg}} | ||
+ | <!--T:12--> | ||
+ | {{Arch Tools navi}} | ||
+ | <!--T:13--> | ||
+ | {{Userdocnavi}} | ||
</translate> | </translate> | ||
− | |||
− |
Latest revision as of 23:42, 9 February 2019
Menu location |
---|
Arch → Utilities → Merge Walls |
Workbenches |
Arch |
Default shortcut |
None |
Introduced in version |
- |
See also |
Arch Wall |
Contents |
Description
The MergeWalls tool fuses two or more selected Arch Walls.
How to use
Scripting
See also: Arch API and FreeCAD Scripting Basics.
This tool can be used in macros and from the Python console by using the following function:
base = joinWalls(walls, delete=False)
Example:
import FreeCAD, Draft, Arch p1 = FreeCAD.Vector(0, 0, 0) p2 = FreeCAD.Vector(2000, 0, 0) baseline = Draft.makeLine(p1, p2) Wall1 = Arch.makeWall(baseline, length=None, width=150, height=2000) FreeCAD.ActiveDocument.recompute() Wall2 = Arch.makeWall(None, length=2000, width=200, height=1000) FreeCAD.ActiveDocument.recompute() base = Arch.joinWalls([Wall1, Wall2])
Arch
- Elements: Wall, Structure, Roof, Window, Door, Stairs, Space, Frame, Equipment; Pipe, Pipe Connector; Schedule
- Reinforcements: Rebar; Straight Rebar, UShape Rebar, LShape Rebar, Bent Shape Rebar, Stirrup Rebar, Helical Rebar
- Panels: Panel, Panel Cut, Panel Sheet, Nest
- Materials: Material, Multi-Material
- Organization: Site, Reference, Building, Floor, Building Part, Section Plane
- Axes: Axis, Axes system, Grid
- Modification: Cut with plane, Add component, Remove component, Survey
- Utilities: Component, Clone component, Split Mesh, Mesh To Shape, Select non-solid meshes, Remove Shape, Close Holes, Merge Walls, Check, Ifc Explorer, Toggle IFC Brep flag, 3 Views from mesh, Create IFC spreadsheet, Toggle Subcomponents
- Additional: Preferences, Import-Export Preferences (IFC, DAE, OBJ, JSON, 3DS); Arch API
User documentation

- Installation: Linux/Unix, Windows, Mac; Getting started
- Basics: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Workbenches: Std Base; Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface workbench, TechDraw, Test Framework, Web
- Scripting: Introduction to Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, How to install macros, Gui Command, Units Modules: Builtin modules, Workbench creation, Installing more workbenches Meshes: Mesh Scripting, Mesh Module Parts: The Part Module, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt interface: PySide, Using the FreeCAD GUI, Dialog creation Parametric objects: Scripted objects Other: Code snippets, Line drawing function, Embedding FreeCAD, FreeCAD vector math library, Power users hub, Python, Macros, FreeCAD Scripting Basics, Topological data scripting