Arch MergeWalls: Difference between revisions

From FreeCAD Documentation
(→‎Scripting: base = Arch.joinWalls([Wall1, Wall2]))
(Marked this version for translation)
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Template:UnfinishedDocu}}
<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
{{GuiCommand
Line 12: Line 14:
==Description== <!--T:2-->
==Description== <!--T:2-->


<!--T:6-->
The [[Arch MergeWalls|MergeWalls]] tool fuses two or more selected [[Arch Wall]]s.
The [[Arch MergeWalls|MergeWalls]] tool fuses two or more selected [[Arch Wall]]s.


==How to use== <!--T:3-->
==How to use== <!--T:3-->


<!--T:7-->
# Select two or more walls.
# Select two or more walls.
# Go to the menu {{MenuCommand|Arch → Utilities → [[Image:Arch MergeWalls.svg|16px]] Merge Walls}}.
# Go to the menu {{MenuCommand|Arch → Utilities → [[Image:Arch MergeWalls.svg|16px]] Merge Walls}}.


== Scripting ==
== Scripting == <!--T:8-->
{{Emphasis|See also:}} [[Arch API]] and [[FreeCAD Scripting Basics]].
{{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:
This tool can be used in [[macros]] and from the [[Python]] console by using the following function:
</translate>
</translate>
Line 29: Line 34:
<translate>
<translate>


<!--T:10-->
Example:
Example:
</translate>
</translate>
Line 46: Line 52:
}}
}}
<translate>
<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:4-->
<!--T:12-->
{{Arch Tools navi}}
{{Arch Tools navi}}

<!--T:13-->
{{Userdocnavi}}
{{Userdocnavi}}
</translate>
</translate>

Revision as of 22:42, 9 February 2019

Arch MergeWalls

Menu location
Arch → Utilities → Merge Walls
Workbenches
Arch
Default shortcut
None
Introduced in version
-
See also
Arch Wall

Description

The MergeWalls tool fuses two or more selected Arch Walls.

How to use

  1. Select two or more walls.
  2. Go to the menu Arch → Utilities → Merge Walls.

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])