Arch Stairs/it: Difference between revisions

From FreeCAD Documentation
(Created page with "* {{ProprietaDati|Nosing}}: lunghezza di sovrapposizione degli scalini * {{ProprietaDati|Number of risers}}: numero di scalini, numero di alzate * {{ProprietaDati|Riser Height...")
(Created page with "{{KEY/it|Structure}}")
Line 37: Line 37:
* {{ProprietaDati|Tread Thickness}}: spessore degli scalini (aggiunto verso il basso)
* {{ProprietaDati|Tread Thickness}}: spessore degli scalini (aggiunto verso il basso)


Structure
{{KEY/it|Structure}}


* {{PropertyData|Landings}}: The type of landings.
* {{PropertyData|Landings}}: The type of landings.

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

  • DatiLandings: The type of landings.
  • DatiStringer Offset: The offset between the border of the stairs and the structure.
  • DatiStringer Width: The width of the stringers.
  • DatiStructure: The type of structure of these stairs.
  • DatiStructure Thickness: The thickness of the structure.
  • DatiWinders: The type of winders.

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.