Arch Stairs/cs: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
Line 1: Line 1:
{{GuiCommand|Name=Arch_Stairs|Workbenches=[[Arch Module|Modul architektura]]|MenuLocation=Arch → Stairs|Shortcut=S R}}
{{GuiCommand/cs|Name=Arch_Stairs|Workbenches=[[Arch Module|Modul architektura]]|MenuLocation=Arch → Stairs|Shortcut=S R}}
==Popis==
==Popis==
Nástroj Schody pro vytváření a definování schodišť jakéhokoliv typu
Nástroj Schody pro vytváření a definování schodišť jakéhokoliv typu
Line 7: Line 7:
[[Image:Arch Stairs example.jpg|640px]]
[[Image:Arch Stairs example.jpg|640px]]


On the above image, two stairs were created, one with a massive structure and a landing, and another one with a single stringer.
[[File:Stairs_it.png|left]] {{clear}}


==Použití==
==How to use==
Stiskněte tlačítko {{KEY|[[Image:Arch_Stairs.png|32px]] Schody}} nebo klávesy {{KEY|S}}, {{KEY|R}}
# Press the {{KEY|[[Image:Arch_Stairs.png|16px]] [[Arch Stairs]]}} button, or press {{KEY|S}}, {{KEY|R}} keys
# Adjust the desired properties. Some parts of the stairs, such as the structure, might not appear immediately, if any of the properties makes it impossible, such as a structure thickness of 0.
{{clear}}
==Vlastnosti==


==Properties==
[[File:StairsProperties_it.png|left]]


Base
===Data===
====Architektura====
* {{PropertyData|Zarovnání}}: zarovnání schodů k základně, je-li aplikována
* {{PropertyData|Základ}}: úpravy (zatím neimplementováno)
* {{PropertyData|Výška}}: celková výška schodů
* {{PropertyData|Délka}}: celková délka schodů pokud není definována základna
* {{PropertyData|Šířka}}: šířka schodů
====Základ====
* {{PropertyData|Označení}}: uživatelské jméno objektu (UTF8)
* {{PropertyData|Umístění}}:
====Stupně====
* {{PropertyData|Nos}}: rozměr nosu
* {{PropertyData|Počet podstupnic}}: počet podstupnic schodů
* {{PropertyData|Výška podstupnice}}: výška podstupnic
* {{PropertyData|Hloubka nášlapu}}: hloubka nášlapných ploch
* {{PropertyData|Tloušťka stupnic}}: tloušťka stupnic


* {{PropertyData|Align}}: The alignment of these stairs on their baseline, if applicable.
* {{PropertyData|Align}}: The alignment of these stairs on their baseline, if applicable.
Line 74: Line 58:
</syntaxhighlight>
</syntaxhighlight>


==Omezení==
==Limitations==
* Not available before FreeCAD version 0.14
Podívejte se na [http://forum.freecadweb.org/viewtopic.php?f=9&t=4564 Schody].
* Only straight stairs are available at the moment
* See the [http://forum.freecadweb.org/viewtopic.php?f=9&t=4564 forum announcement].


{{clear}}
{{clear}}

Revision as of 15:14, 8 April 2014

Arch_Stairs

Umístění Menu
Arch → Stairs
Pracovní stoly
Modul architektura
Výchozí zástupce
S R
Představen ve verzi
-
Viz také
Nikdo

Popis

Nástroj Schody pro vytváření a definování schodišť jakéhokoliv typu

See the Stairs entry in wikipedia for a definition of the different terms used to describe parts of stairs.

On the above image, two stairs were created, one with a massive structure and a landing, and another one with a single stringer.

How to use

  1. Press the Arch Stairs button, or press S, R keys
  2. Adjust the desired properties. Some parts of the stairs, such as the structure, might not appear immediately, if any of the properties makes it impossible, such as a structure thickness of 0.

Properties

Base

  • ÚdajeAlign: The alignment of these stairs on their baseline, if applicable.
  • ÚdajeBase: The baseline of these stairs, if any.
  • ÚdajeHeight: The total height of these stairs, if not based on a baseline, or the baseline is horizontal.
  • ÚdajeLength: The total length of these stairs if no baseline is defined.
  • ÚdajeWidth: The width of these stairs.

Steps

  • ÚdajeNosing: The size of the nosing.
  • ÚdajeNumber of Steps: The numbers of steps (risers) in these stairs.
  • ÚdajeRiser Height: The height of the risers.
  • ÚdajeTread Depth: The depth of the treads.
  • ÚdajeTread Thickness: The thickness of the treads.

Structure

  • ÚdajeLandings: The type of landings.
  • ÚdajeStringer Offset: The offset between the border of the stairs and the structure.
  • ÚdajeStringer Width: The width of the stringers.
  • ÚdajeStructure: The type of structure of these stairs.
  • ÚdajeStructure Thickness: The thickness of the structure.
  • ÚdajeWinders: 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.