Arch Лестница

From FreeCAD Documentation
Revision as of 19:13, 7 March 2019 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Arch Stairs

Системное название
Arch Stairs
Расположение в меню
Архитектура → Лестницы
Верстаки
Arch
Быстрые клавиши
S R
Представлено в версии
-
См. также
Нет

Описание

Инструмент лестницы позволяет автоматически создавать несколько типов лестниц. В настоящий момент поддерживаются только прямые лестницы (с или без центральной посадки). Лестница может быть построена с нуля или с прямой line, и в этом случае лестница следует за строкой. Если линия не горизонтальна, а имеет вертикальный наклон, лестница также будет следовать ее наклону.

См. Stairs entry in wikipedia для определения различных терминов, используемых для описания частей лестницы.

«На вышеупомянутом изображении были созданы две лестницы, одна с массивной структурой и посадкой, а другая с одним стрингером».

Опции

  • Лестницы разделяют общие свойства и поведение всех Arch Components

Использование

  1. Нажмите кнопку Arch Stairs или нажмите клавиши S, R
  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.

Свойства

Base

  • ДанныеAlign: The alignment of these stairs on their baseline, if applicable.
  • ДанныеBase: The baseline of these stairs, if any.
  • ДанныеHeight: The total height of these stairs, if not based on a baseline, or the baseline is horizontal.
  • ДанныеLength: The total length of these stairs if no baseline is defined.
  • ДанныеWidth: The width of these stairs.

Steps

  • ДанныеNosing: The size of the nosing.
  • ДанныеNumber of Steps: The numbers of steps (risers) in these stairs.
  • ДанныеRiser Height: The height of the risers.
  • ДанныеTread Depth: The depth of the treads.
  • ДанныеTread Thickness: The thickness of the treads.

Structure

  • ДанныеLandings: The type of landings.
  • ДанныеStringer Offset: The offset between the border of the stairs and the structure.
  • ДанныеStringer Width: The width of the stringers.
  • ДанныеStructure: The type of structure of these stairs.
  • ДанныеStructure Thickness: The thickness of the structure.
  • ДанныеWinders: The type of winders.

Scripting

See also: Arch API and FreeCAD Scripting Basics.

The Stairs tool can be used in macros and from the Python console by using the following function:

Stairs = makeStairs(baseobj=None, length=None, width=None, height=None, steps=None, name="Stairs")
  • Creates a Stairs object from the given baseobj.
  • If baseobj is not given, it will use length, width, height, and steps, to build a solid object.

Example:

import Arch

Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14)

Ограничения

  • Недоступно до версии 0.14 FreeCAD
  • Only straight stairs are available at the moment
  • See the forum entry for circle stairs.
  • See the forum announcement.