Arch Aggiungi
Jump to navigation
Jump to search
Outdated translations are marked like this.
Posizione nel menu |
---|
Arch → Aggiungi |
Ambiente |
Architettura |
Avvio veloce |
Nessuno |
Introdotto nella versione |
- |
Vedere anche |
Rimuovi |
Contents |
Descrizione
Lo strumento Aggiungi permette di eseguire 4 diversi tipi di operazioni:
- Aggiungere a un componente di Architettura degli oggetti basati su forme, ad esempio un
muro o una
struttura. Questi oggetti vengono inseriti nell'elemento Architettura, ed è possibile modificare la loro forma, ma mantenendo le loro caratteristiche di base come la larghezza e l'altezza.
- Aggiungere componenti di Architettura, quali
muri o
Strutture, a un oggetto costituito da un gruppo base come il
Piano.
- Aggiungere dei
sistemi di assi a oggetti
struttura.
- AAggiungere degli oggetti ai
piani di sezione.
La controparte di questo strumento è lo strumento Rimuovi componente.
Un box aggiunto a un muro come componente.
Utilizzo
- Selezionare gli oggetti da unire. L'ultimo oggetto selezionato è l'oggetto Arch ospite.
- Premere il pulsante
, o usare Arch →
Aggiungi componente dal menu principale.
Script
Vedere anche: Arch API e Nozioni di base sugli script di FreeCAD.
Lo strumento Aggiungi può essere utilizzato nelle macro e dalla console Python tramite la seguente funzione:
addComponents(objectsList, host)
- Il frammento di codice riportato sopra aggiunge gli oggetti dati in
objectsList
all'oggettohost
specificato. - Nota:
objectsList
può essere un singolo oggetto o un elenco di oggetti.
Esempio:
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()
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