Arch Roof/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Script ==")
(Created page with "Lo strumento Tetto può essere utilizzato nelle macro e dalla console python utilizzando la seguente funzione:")
Line 36: Line 36:
== Script ==
== Script ==


The Roof tool can by used in [[macros]] and from the python console by using the following function:
Lo strumento Tetto può essere utilizzato nelle [[macros/it|macro]] e dalla console python utilizzando la seguente funzione:
<syntaxhighlight>
<syntaxhighlight>
makeRoof (baseobj,[facenr],[angles],[runs],[idrel],[thickness],[overhang],[name])
makeRoof (baseobj,[facenr],[angles],[runs],[idrel],[thickness],[overhang],[name])

Revision as of 20:23, 13 March 2015

Tetto

Posizione nel menu
Arch → Tetto
Ambiente
Architettura
Avvio veloce
R F
Introdotto nella versione
-
Vedere anche
Nessuno

Descrizione

Lo strumento Tetto consente di creare un tetto inclinato selezionando un contorno. L'oggetto Tetto creato in questo modo è parametrico e mantiene le sue relazioni con l'oggetto base. Notare che questo strumento è ancora in sviluppo e potrebbe non funzionare correttamente con le forme molto complesse. Si basa sul principio che ad ogni bordo viene assegnata una falda del tetto (con le caratteristiche di pendenza, larghezza coperta, sbalzo, spessore ...).

Utilizzo

  1. Create a wire with following the conterclockwise direction and select it.

  1. Press the Arch Roof button, or press R then F keys
  2. The default roof object could have a strange shape, it's because the tool have not all the needed informations.
  3. After creating the default roof, double click on the object in the tree view to access and edit all the properties. Angle must be between 0 and 90.
  4. Each line correspond to a roof pane. So you can set properties you want for each roof pane.
  5. To help you, you can set Angle or Run to 0 and defined a Relative Id, this make automatic calculs to find the data relative to the relative Id.
  6. It work like this :
    1. If Angle = 0 and Run = 0 then profile is identical to the relative profile.
    2. If Angle = 0 then angle is calculated so that the height is the same one as the relative profile.
    3. If Run = 0 then Run is calculated so that the height is the same one as the relative profile.
  7. At the end, set an angle to 90° to make a gable.

Proprietà

  • DatiAngles: Angolo di pendenza di ogni falda (un angolo per ciascun lato del contorno di base).
  • DatiRuns: Proiezione orizzontale della lunghezza della falda (un Run per ciascun lato del contorno di base).
  • DatiIdRel: Relazioni Id The slope angle of the roof
  • DatiThickness: Spessore della falda (uno spessore per ciascun lato del contorno di base).
  • DatiOverhang: Sbalzo della falda, in proiezione orizzontale (uno sbalzo per ciascun lato del contorno di base).
  • DatiFace: L'indice della faccia dell'oggetto di base da utilizzare #Non ancora usato

Script

Lo strumento Tetto può essere utilizzato nelle macro e dalla console python utilizzando la seguente funzione:

makeRoof (baseobj,[facenr],[angles],[runs],[idrel],[thickness],[overhang],[name])
Makes a roof based on a closed wire. You can provide a list of angles, run, idrel, thickness, overhang for each edges in the wire to define the roof shape. The default for angle is 45 and the list is automatically complete to match with number of edges in the wire.

Example:

import Arch, Draft
rect = Draft.makeRectangle(30,40)
Arch.makeRoof(rect,angles=[30.,])