Arch: Rimuovi
Jump to navigation
Jump to search
Outdated translations are marked like this.
Posizione nel menu |
---|
Arch → Rimuovi |
Ambiente |
Architettura |
Avvio veloce |
Nessuno |
Introdotto nella versione |
- |
Vedere anche |
Taglia con una linea, Taglia con un piano, Aggiungi |
Contents |
Descrizione
Lo strumento Rimuovi permette di eseguire 2 tipi di operazioni:
La controparte di questo strumento è lo strumento Aggiungi.
Un parallelepipedo sottratto da un muro, lasciando un buco in esso.
Utilizzo
- Selezionare un sotto-componente all'interno di un oggetto Architettura.
- Premere il pulsante
Rimuovi.
Oppure
- Selezionare gli oggetti da sottrarre, l'ultimo oggetto selezionato deve l'oggetto Arch dal quale verranno sottratti gli altri oggetti.
- Premere il pulsante
Rimuovi.
Script
Vedere anche: Arch API e Nozioni di base sugli script di FreeCAD.
Lo strumento Rimuovi può essere usato nelle macro e dalla console Python utilizzando la seguente funzione:
removeComponents(objectsList, host=None)
- Rimuove dal genitore il componente o i componenti della lista
objectsList
fornita. - Se viene specificato un oggetto
host
, questa funzione prova invece ad aggiungere gli oggetti allaobjectsList
, come fori ahost
.
Esempio:
import FreeCAD, Draft, Arch
Line = Draft.makeWire([FreeCAD.Vector(0, 0, 0),FreeCAD.Vector(2000, 2000, 0)])
Wall = Arch.makeWall(Line, width=150, height=3000)
Box = FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
Box.Length = 900
Box.Width = 450
Box.Height = 2000
FreeCAD.ActiveDocument.recompute()
Draft.rotate(Box, 45)
Draft.move(Box, FreeCAD.Vector(1000, 700, 0))
Arch.removeComponents(Box, Wall)
FreeCAD.ActiveDocument.recompute()
Documentazione di 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); Api Arch
Documentazione utente

- Installazione: Windows, Linux, Mac; Getting started
- Base: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Ambienti: Menu di 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