Arch Structure/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 Structure|Workbenches=[[Arch Module/es|Arquitectura]]|MenuLocation=Arquitectura -> Estructura|Shortcut=S T|SeeAlso=[[Arch Wall/es|Muro]]}}
{{GuiCommand|Name=Arch_Structure|Workbenches=[[Arch Module|Arch]]|MenuLocation=Arch -> Structure|Shortcut=S T|SeeAlso=[[Arch Wall]]}}


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

Esta herramienta permite construir elementos estructurales como columnas o vigas, especificando su ancho, largo y alto, o basándose en un perfil 2D.


This tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile.
[[Image:Arch Structure example.jpg]]
[[Image:Arch Structure example.jpg]]
The above image shows a column based on a 2D base profile, a column and a beam based on no profile (defined by their height, length and width dimensions) and a metallic profile based on a 2D contour (face, wire or sketch)


==How to use==
La imagen superior muestra una columna basada en un perfil 2D, una columna y una viga que no se basan en un perfil (definidas por sus dimensiones de alto, largo y ancho) y un perfil metálico basado en un contorno 2D (cara, contorno o croquis)

====Utilización====
# Seleccionar una forma 2D (objeto bocetado, cara o croquis) (opcional)
# Presionar el botón [[Image:Arch Structure.png|16px]] '''Estructura''', o pulsar las teclas {{KEY|S}} y {{KEY|T}}
# Ajusta las propiedades deseadas

==Opciones==


# Select a 2D shape (draft object, face or sketch) (optional)
* Si no se ha seleccionado ningún objeto, se crea un bloque en tres dimensiones
# Press the {{KEY|[[Image:Arch Structure.png|16px]] '''Arch Structure'''}} button, or press {{KEY|S}} then {{KEY|T}} keys
* El alto, largo y acho de la estructura se puede ajustar después de su creación
# Adjust the desired properties
* Presiona {{KEY|ESC}} o el botón {{KEY|'''Cancelar'''}} para cancelar el comando actual.
* Haciendo doble clic en la estructura en la vista en árbol después de crearla permite entrar en modo edición y acceder y modificar sus adiciones y substracciones
* En modo edición, también es posible añadir [[Arch Axis/es|sistemas de ejes]] al elemento estructural. Cuando se añade un sistema de ejes, el elemento estructural se copiará en cada eje del sistema. Cuando se añaden dos sistemas de ejes, el elemento estructural se copiará una vez en cada intersección de los dos sistemas.


==Propiedades==
==Options==


* If no object is selected, a default 3-dimension block is created
* {{PropertyData|Length}}: La longitud de la estructura (sólo se utiliza si no está basada en un perfil)
* The height, width and height of a structure can be adjusted after creation
* {{PropertyData|Width}}: El ancho de la estructura (sólo se utiliza si no está basada en un perfil)
* Press {{KEY|ESC}} or the {{KEY|'''Cancel'''}} button to abort the current command.
* {{PropertyData|Height}}: La altura de la estructura (o la longitud de extrusión cuando está basado en un perfil)
* Double-clicking on the structure in the tree view after it is created allows you to enter edit mode and access and modify its additions and subtractions
* In edit mode, it is also possible to add [[Arch Axis|axes systems]] to the structural element. When adding one axes system, the structural element will be copied once on each axis of the system. When adding two axes systems, the structural element will be copied once on each intersection of the two systems.


==Programación==
==Properties==


* {{PropertyData|Length}}: The length of the structure (only used if not based on a profile)
La herramienta Estructura se puede utilizar en [[macros/es|macros]] y desde la consola de Python mediante las siguientes funciones:
* {{PropertyData|Width}}: The width of the structure (only used if not based on a profile)
* {{PropertyData|Height}}: The height of the structure (or the extrusion length when based on a profile)


==Scripting==
'''makeStructure ([obj],[length],[width],[height],[name])''': Crea un elemento de estructura basado en el objeto perfil
y altura de extrusión dadas.
Si no se indica un objeto base, se puede especificar la longitud y ancho para un objeto cúbico.


The Structure tool can by used in [[macros]] and from the python console by using the following function:
Ejemplo:
<syntaxhighlight>
makeStructure ([obj],[length],[width],[height],[name])
</syntaxhighlight>
: creates a structure element based on the given profile object and the given extrusion height. If no base object is given, you can also specify length and width for a cubic object.


Example:
<syntaxhighlight>
import Arch
import Arch
Arch.makeStructure(0.5,1,3)
Arch.makeStructure(0.5,1,3)
</syntaxhighlight>


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

Revision as of 10:14, 29 November 2013

Arch_Structure

Menu location
Arch -> Structure
Workbenches
Arch
Default shortcut
S T
Introduced in version
-
See also
Arch Wall

Description

This tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile. The above image shows a column based on a 2D base profile, a column and a beam based on no profile (defined by their height, length and width dimensions) and a metallic profile based on a 2D contour (face, wire or sketch)

How to use

  1. Select a 2D shape (draft object, face or sketch) (optional)
  2. Press the Arch Structure button, or press S then T keys
  3. Adjust the desired properties

Options

  • If no object is selected, a default 3-dimension block is created
  • The height, width and height of a structure can be adjusted after creation
  • Press ESC or the Cancel button to abort the current command.
  • Double-clicking on the structure in the tree view after it is created allows you to enter edit mode and access and modify its additions and subtractions
  • In edit mode, it is also possible to add axes systems to the structural element. When adding one axes system, the structural element will be copied once on each axis of the system. When adding two axes systems, the structural element will be copied once on each intersection of the two systems.

Properties

  • DatosLength: The length of the structure (only used if not based on a profile)
  • DatosWidth: The width of the structure (only used if not based on a profile)
  • DatosHeight: The height of the structure (or the extrusion length when based on a profile)

Scripting

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

 makeStructure ([obj],[length],[width],[height],[name])
creates a structure element based on the given profile object and the given extrusion height. If no base object is given, you can also specify length and width for a cubic object.

Example:

 import Arch
 Arch.makeStructure(0.5,1,3)