Arch RemoveShape/ro: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 4: Line 4:
</div>
</div>


<div class="mw-translate-fuzzy">
{{GuiCommand/ro
{{GuiCommand/ro
|Name=Arch RemoveShape|Name/ro=Arch RemoveShape
|Name=Arch RemoveShape|Name/ro=Arch RemoveShape
Line 10: Line 11:
|SeeAlso=[[Arch MeshToShape|Arch MeshToShape]]
|SeeAlso=[[Arch MeshToShape|Arch MeshToShape]]
}}
}}
</div>


==Descriere==
==Descriere==
Line 54: Line 56:
FreeCAD.ActiveDocument.recompute()
FreeCAD.ActiveDocument.recompute()
}}
}}

<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{docnav/ro|[[Arch_SelectNonSolidMeshes|Select non-solid meshes]]|[[Arch_CloseHoles|Close Holes]]|[[Arch_Module|Arch]]|IconL=Arch_SelectNonSolidMeshes.png |IconC=Workbench_Arch.svg |IconR=Arch_CloseHoles.svg}}
{{docnav/ro|[[Arch_SelectNonSolidMeshes|Select non-solid meshes]]|[[Arch_CloseHoles|Close Holes]]|[[Arch_Module|Arch]]|IconL=Arch_SelectNonSolidMeshes.png |IconC=Workbench_Arch.svg |IconR=Arch_CloseHoles.svg}}

Revision as of 13:10, 1 December 2020

Arch RemoveShape

poziția meniului
Arch → Utilities → Remove Shape
Ateliere
Arch
scurtătură
nici unul
Prezentat în versiune
-
A se vedea, de asemenea,
Arch MeshToShape

Descriere

Acest instrument încearcă să înlăture forma cubică interioară a unui Arc Wall sau Arch Structure și să-și ajusteze proprietățile, făcând-o complet parametrică. Acest instrument va funcționa numai dacă forma subiacentă este cubică (exact 6 fețe, toate colțurile au doar unghiuri drepte).

Cum se folosește

  1. Selectați un Arch Wall sau o Arch Structure
  2. Apăsați tasta Remove Shape din meniul Arch -> Utilities menu

Scrip-Programare

Acest instrument poate fi utilizat în macros și din consola Python utilizând următoarea funcție:

removeShape(objs, mark=True)

ia un obiect arc (perete sau o structură) construit pe o formă cubică și îndepărtează forma interioară, păstrând lungimea, lățimea și înălțimea ca parametri.

import FreeCAD, Draft, Arch

Box = FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
Box.Length = 1000
Box.Width = 2000
Box.Height = 1000
FreeCAD.ActiveDocument.recompute()

Structure = Arch.makeStructure(Box)
FreeCAD.ActiveDocument.recompute()

Arch.removeShape(Structure)
FreeCAD.ActiveDocument.recompute()