|
Ubicación en el Menú |
---|
Arch → Stairs |
Entornos de trabajo |
Arch |
Atajo de teclado por defecto |
S R |
Introducido en versión |
- |
Ver también |
Ninguno |
La herramienta de escaleras le permite construir automáticamente varios tipos de escaleras. Por el momento, solo se admiten escaleras rectas (con o sin un rellano central). Las escaleras se pueden construir desde cero, o desde una recta line, en cuyo caso las escaleras siguen la línea. Si la línea no es horizontal, pero tiene una inclinación vertical, las escaleras también seguirán su pendiente.
Consulte la entrada Stairs en wikipedia para obtener una definición de los diferentes términos utilizados para describir las partes de las escaleras.
En la imagen de arriba, se crearon dos escaleras, una con una estructura masiva y un rellano, y otra con un único larguero.
Presiona el botón Escaleras, o pulsa las teclas S, R
Complex stairs based on a selection of lines and wired as shown on the left.
In red the wires used for the landings at Z=1500mm, Z=3000mm and Z=4500mm.
In black the lines connecting them used for the flights.
An Arch Stairs object shares the common properties and behaviors of all Arch Components.
Segment and Parts
Vector
): (read-only) The absolute top level the stairs lead to.Link
): Last segment (flight or landing) of an Arch Stairs connecting to this segment. The start level of the stairs will be the end level of this last segment.VectorList
): The left outline of the stairs (read-only).VectorList
): The left outline of all segments of the stairs (read-only).VectorList
): The right outline of the stairs (read-only).VectorList
): The right outline of all segments of the stairs (read-only).Length
): Height of the left railing of the stairs or landing.Length
): Height of the right railing of the stairs or landing.LinkHidden
): The left railing object. introduced in 0.20: Property type updated from String
to LinkHidden
.Length
): Offset of the left railing from the edge of the stairs or landing.Length
): Offset of the right railing from the edge of the stairs or landing.LinkHidden
): The right railing object. introduced in 0.20: Property type updated from String
to LinkHidden
.Stairs
Escalones
Estructura
Las escaleras se pueden crear a partir de scripts de Python y macros utilizando la siguiente función:
Stairs = makeStairs(baseobj=None, length=None, width=None, height=None, steps=None, name="Stairs")
Ejemplo:
import Arch
Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14)