Architektura Podlaží

From FreeCAD Documentation
Revision as of 11:30, 1 December 2013 by Honza32 (talk | contribs) (Created page with "# Volitelně lze vybrat jeden nebo více objektů, které lze vložit do Vašeho nového podlaží # Stiskněte klávesu {{KEY|16px '''Podlaží'''}} ...")

Arch Floor

Menu location
Arch -> Floor
Workbenches
Arch
Default shortcut
F L
Introduced in version
-
See also
Arch Building, Arch Site

Popis

Podlaží je speciální typ skupinového objektu FreeCADu, který má pár doplňkových vlastností zvláště vhodných pro výstavbu podlaží. Speciálně mají vlastnost výška, kterou mohou potomci objektu (zdi a struktury) automaticky použít pro nastavení jejich vlastní výšky.

Použití

  1. Volitelně lze vybrat jeden nebo více objektů, které lze vložit do Vašeho nového podlaží
  2. Stiskněte klávesu Podlaží nebo klávesy F a L

Options

  • After creating a floor, you can add more objects to it by drag and dropping them in the Tree View or by using the Arch Add tool
  • You can remove objects from a floor by drag and dropping them out of it the Tree View or by using the Arch Remove tool

Properties

  • ÚdajeHeight: The height of the floor, to be used by its child objects

Scripting

The Floor tool can by used in macros and from the python console by using the following function:

 makeFloor ([objectslist])

creates a floor including the objects from the given list.

Example:

 import Arch
 Arch.makeFloor()