Arch Floor/es: Difference between revisions

From FreeCAD Documentation
(Spanish translation)
(Updating to match new version of source page)
Line 1: Line 1:
{{GuiCommand/es|Name=Arch Floor|Workbenches=[[Arch Module/es|Entorno de Arquitectura]]|MenuLocation=Arquitectura -> Piso|Shortcut=F L|SeeAlso=[[Arch Building/es|Construcción]], [[Arch Site/es|Ubicación]]}}
{{GuiCommand|Name=Arch Floor|Workbenches=[[Arch Module|Arch]]|MenuLocation=Arch -> Floor|Shortcut=F L|SeeAlso=[[Arch Building]], [[Arch Site]]}}


==Descripción==
==Description==


The Arch Floor is a special type of FreeCAD group object that has a couple of additional properties particularly suited for building floors. Particularly, they have a height property, that its children objects ([[Arch Wall|walls]] and [[Arch Structure|structures]]) can use to set their own height automatically. They are mostly used to organize your model.
El Piso de Arquitectura es un tipo especial de grupo de objetos de FreeCAD que tiene un par de propiedades adicionales particularmente ajustadas para la construcción de pisos. En particular, tienen una propiedad de altura, que sus objetos descendientes ([[Arch Wall/es|muros]] y [[Arch Structure/es|estructuras]]) pueden utilizar para ajustar su altura automáticamente. Se utilizan principalmente para organizar tu modelo.


==Utilización==
==How to use==


# Optionally, select one or more objects to be included in your new floor
# Opcionalmente, selecciona uno o más objetos a ser incluidos en tu nuevo piso
# Presiona el botón{{KEY|[[Image:Arch Floor.png|16px]] '''Piso'''}} o presiona las teclas {{KEY|F}} y {{KEY|L}}
# Press the {{KEY|[[Image:Arch Floor.png|16px]] '''Arch Floor'''}} button or press the {{KEY|F}} then {{KEY|L}} keys


==Opciones==
==Options==


* Después de la creación del piso, puedes añadirle más objetos arrastrando y soltándolos en la vista en árbol o utilizando la herramienta [[Image:Arch Add.png|16px]] [[Arch Add/es|Añadir]]
* After creating a floor, you can add more objects to it by drag and dropping them in the Tree View or by using the [[Image:Arch Add.png|16px]] [[Arch Add]] tool
* Puedes eliminar objetos de un piso arrastrando y soltándolos fuera en la vista en árbol o utilizando la herramienta [[Image:Arch Remove.png|16px]] [[Arch Remove/es|Eliminar]]
* You can remove objects from a floor by drag and dropping them out of it the Tree View or by using the [[Image:Arch Remove.png|16px]] [[Arch Remove]] tool


==Propiedades==
==Properties==


* {{PropertyData|Height}}: La altura del piso, para utilizarse en sus objetos descendientes
* {{PropertyData|Height}}: The height of the floor, to be used by its child objects


==Programación==
==Scripting==


La herramienta piso se puede utilizar en [[macros/es|macros]] y desde la consola de Python por medio de las siguientes funciones:
The Floor tool can by used in [[macros]] and from the python console by using the following function:
<syntaxhighlight>

'''makeFloor ([objectslist])''': Crea un piso incluyendo los objetos de la lista dada
makeFloor ([objectslist])
</syntaxhighlight>

creates a floor including the objects from the given list.
Ejemplo:


Example:
<syntaxhighlight>
import Arch
import Arch
Arch.makeFloor()
Arch.makeFloor()
</syntaxhighlight>

<languages/>
{{languages/es | {{en|Arch_Floor}} {{de|Arch_Floor/de}} {{fr|Arch_Floor/fr}} {{it|Arch_Floor/it}} {{jp|Arch_Floor/jp}} {{se|Arch_Floor/se}} }}

Revision as of 10:21, 29 November 2013

Arch Floor

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

Description

The Arch Floor is a special type of FreeCAD group object that has a couple of additional properties particularly suited for building floors. Particularly, they have a height property, that its children objects (walls and structures) can use to set their own height automatically. They are mostly used to organize your model.

How to use

  1. Optionally, select one or more objects to be included in your new floor
  2. Press the Arch Floor button or press the F then L keys

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

  • DatosHeight: 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()