Arch Stairs/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{KEY/it|Structure}}")
(Created page with "* {{ProprietaDati|Landigs}}: pianerottoli * {{ProprietaDati|Stringer Offset}}: distanza tra il bordo degli scalini e la struttura di sostegno * {{ProprietaDati|Stringer Width}...")
Line 39: Line 39:
{{KEY/it|Structure}}
{{KEY/it|Structure}}


* {{ProprietaDati|Landigs}}: pianerottoli
* {{PropertyData|Landings}}: The type of landings.
* {{PropertyData|Stringer Offset}}: The offset between the border of the stairs and the structure.
* {{ProprietaDati|Stringer Offset}}: distanza tra il bordo degli scalini e la struttura di sostegno
* {{PropertyData|Stringer Width}}: The width of the stringers.
* {{ProprietaDati|Stringer Width}}: larghezza della struttura di sostegno
* {{PropertyData|Structure}}: The type of structure of these stairs.
* {{ProprietaDati|Structure}}: tipo di struttura della scala
* {{PropertyData|Structure Thickness}}: The thickness of the structure.
* {{ProprietaDati|Structure...}}: dimensione per la struttura massiccia, piena
* {{PropertyData|Winders}}: The type of winders.
* {{ProprietaDati|Winders}}: gradini a ventaglio


== Scripting ==
== Scripting ==

Revision as of 20:59, 26 February 2014

Scala

Posizione nel menu
Arch → Scala
Ambiente
Arch
Avvio veloce
S R
Introdotto nella versione
-
Vedere anche
Nessuno

Lo strumento scale consente di creare automaticamente i diversi tipi di scale. Al momento, sono supportate solo le scale dritte (con o senza pianerottolo) sono supportati. Le scale possono essere costruite da zero, o da una linea dritta, nel qual caso le scale seguono la linea. Se la linea non è orizzontale, ma è inclinata verticalmente, anche le scale seguono la sua pendenza.

Vedere in Stairs entry in wikipedia la definizione dei diversi termini usati per descrivere le parti delle scale.

Nell'immagine precedente, sono state create due scale, uno con una struttura massiccia e un pianerottolo, e un'altra con un solo montante.

Utilizzo

  1. Adeguare le proprietà desiderate. Alcune parti delle scale potrebbero non apparire immediatamente se una qualsiasi delle proprietà lo rende impossibile. Ad esempio, potrebbe non apparire la struttura se il suo spessore è impostato pari a 0.

Proprietà

Dati

Template:KEY/it

  • DatiAlign: L'allineamento delle scale sulla loro linea base, se applicabile.
  • DatiBase: La linea base delle scale, se presente.
  • DatiHeight: Interpiano. L'altezza totale delle scale, se non sono basate su una linea base o se la linea base è orizzontale.
  • DatiLength: La lunghezza totale delle scale se non è definita una linea base.
  • DatiWidth: La larghezza della scala

Template:KEY/it

  • DatiLabel: nome
  • DatiPlacement: posizionamento del punto base della scala (angolo anteriore sinistro del primo scalino)

Template:KEY/it

  • DatiNosing: lunghezza di sovrapposizione degli scalini
  • DatiNumber of risers: numero di scalini, numero di alzate
  • DatiRiser Height: alzata, altezza del gradino
  • DatiTread Depth: pedata, larghezza del gradino
  • DatiTread Thickness: spessore degli scalini (aggiunto verso il basso)

Template:KEY/it

  • DatiLandigs: pianerottoli
  • DatiStringer Offset: distanza tra il bordo degli scalini e la struttura di sostegno
  • DatiStringer Width: larghezza della struttura di sostegno
  • DatiStructure: tipo di struttura della scala
  • DatiStructure...: dimensione per la struttura massiccia, piena
  • DatiWinders: gradini a ventaglio

Scripting

Stairs can be created from python scripts and macros by using the following function:

 makeStairs([base], [length], [width], [height], [steps])
  • Creates a stairs object with the given attributes.
  • Returns the new stairs object.

Example:

 import Arch
 makeStairs(length=5, width=1.2, height=3, steps=14)

Limitations

  • Not available before FreeCAD version 0.14
  • Only straight stairs are available at the moment
  • See the forum announcement.