Arch Window/it: Difference between revisions

From FreeCAD Documentation
No edit summary
(Created page with "=== Utilizzo ===")
Line 16: Line 16:
The above image shows a more complex window being constructed on top of a sketch. When entering the window's edit mode, you can create different components, set their thickness, and select and assign wires from the sketch to them.
The above image shows a more complex window being constructed on top of a sketch. When entering the window's edit mode, you can create different components, set their thickness, and select and assign wires from the sketch to them.


==How to use==
=== Utilizzo ===


# If you are going to draw your window directly on a wall, select one face of a wall
# If you are going to draw your window directly on a wall, select one face of a wall

Revision as of 16:54, 30 November 2013

Finestra

Posizione nel menu
Arch → Finestra
Ambiente
Architettura
Avvio veloce
W I
Introdotto nella versione
-
Vedere anche
Muro

Descrizione

L'oggetto Finestra è l'oggetto di base per tutti i tipi di oggetti "incorporabili", quali le finestre, le porte, ecc.. È progettato per essere un elemento indipendente, oppure "ospitato" all'interno di un altro componente come ad esempio in un muro. Ha una propria geometria (ad esempio, il telaio della finestra), e definisce anche il volume che deve essere sottratto per creare un'apertura negli oggetti che lo ospitano. È possibile disegnare una finestra su un profilo di base, come un contorno chiuso, e specificare lo spessore di estrusione. Il volume da sottrarre viene calcolato automaticamente.

Le finestre sono basate su oggetti 2D chiusi, quali ad esempio, dei rettangoli di Draft o di Schizzo, ambienti che sono utilizzati anche per definire i componenti interni. L'oggetto 2D di base può contenere diversi contorni chiusi, che possono essere combinati per formare dei pannelli pieni (richiedono un contorno) o delle cornici (richiedono più contorni). Se l'oggetto di base 2D è stato elaborato su un oggetto di supporto, e l'oggetto di supporto è un muro, la finestra viene automaticamente inclusa in quel muro.

Nell'immagine precedente, la finestra viene prima costruita sulla base di un rettangolo di Draft, quindi viene inserita in un muro. L'operazione Template:KEY/it una finestra a un Template:KEY/it intaglia automaticamente una apertura corretta nel muro che la ospita.

The above image shows a more complex window being constructed on top of a sketch. When entering the window's edit mode, you can create different components, set their thickness, and select and assign wires from the sketch to them.

Utilizzo

  1. If you are going to draw your window directly on a wall, select one face of a wall
  2. Press the Arch Window button, or press W then I keys
  3. A new sketch will be created (on the selected wall face if applicable). Draw one or more closed wires
  4. Press the CLose button in the task panel to create the window
  5. Enter Edit mode by double-clicking the window in the tree view, to adjust the window components

Building components

Windows can include 2 types of components: panels and frames. Panels are made from one closed wire, which gets extruded, while frames are made from 2 or more closed wire, where each one is extrudes, then the smaller ones are subtracted from the biggest one. You can access, create, modify and delete components of a window in edit mode (double-click the window in the Tree view). The components have the following properties:

  • Name: A name for the component
  • Wires: A comma-separated list of wires the component is based on
  • Thickness: The extrusion thickness of the component
  • Offset: The distance between the component and its base 2D wire(s)

Options

Doors

Doors can be made easily with the window tool, you only need to draw the base of the inner wire touching the exterior wire like in the image below.

Door

Properties

  • DatiWindow Parts: A list of strings (5 strings per component, setting the component options above, string 2 currently not used)

Scripting

The Window tool can by used in macros and from the python console by using the following function:

makeWindow (obj,[name])
creates a window based on the given object

Example:

import Draft, Arch
rect = Draft.makeRectangle(length=2,height=4)
Arch.makeWindow(rect)