Draft Array/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(39 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand/es|Name=Draft_Array|Workbenches=[[Draft Module/es|Boceto]], [[Arch Module/es|Arquitectura]]|MenuLocation=Boceto-> Matriz}}


<div class="mw-translate-fuzzy">
==Descripción==
{{Docnav/es
|
|
|[[Draft_Workbench/es|Borrador]]
|IconL=
|IconR=
|IconC=Workbench_Draft.svg
}}
</div>


<div class="mw-translate-fuzzy">
La herramienta Matriz crea matrices ortogonalea (3 ejes) o polares a partir de los objetos seleccionados. Si no se selecciona ningún objeto, te solicitará que selecciones uno.
{{VeryImportantMessage|Este comando está obsoleto en 0.19. Para el nuevo uso, vea [[Draft_OrthoArray/es|Borrador ArregloOrtográfica]], que funciona esencialmente de la misma manera.
Vea también [[Draft_PolarArray/es|Borrador ArregloPolar]] y [[Draft_CircularArray/es|Borrador ArregloCircular]].}}
</div>


<div class="mw-translate-fuzzy">
[[Image:Draft_Array_example.jpg|400px]]
{{GuiCommand
|Name=Draft Array
|Name/es=Borrador Arreglo
|MenuLocation=Borrador → Arreglo
|Workbenches=[[Draft_Workbench/es|Borrador]]
|SeeAlso=[[Draft_PolarArray/es|Borrador ArregloPolar
]], [[Draft_CircularArray/es|Borrador ArregloCircular]], [[Draft_PathArray/es|Borrador ArregloTrayectorias]], [[Draft_PointArray/es|Borrador ArregloPuntos]], [[Draft_Clone/es|Borrador Clon]]
}}
</div>


<span id="Description"></span>
==Utilizaación==
==Descripción==


<div class="mw-translate-fuzzy">
# Selecciona un objeto a partir del que desees crear una matriz
# Presiona el botón {{KEY|[[Image:Draft Array.png|16px]] [[Draft Array/es|Matriz]]}}
La {{Button|[[Image:Draft Array.svg|16px]] [[Draft Array/es|Borrador Arreglo]]}}
herramienta crea matrices ortogonalea (3 ejes) o polares a partir de los objetos seleccionados. Si no se selecciona ningún objeto, te solicitará que selecciones uno.
</div>


The command can be used on 2D objects created with the [[Draft_Workbench|Draft Workbench]] or [[Sketcher_Workbench|Sketcher Workbench]], but also on many 3D objects such as those created with the [[Part_Workbench|Part Workbench]], [[PartDesign_Workbench|PartDesign Workbench]] or [[Arch_Workbench|Arch Workbench]].
==Opciones==


This command is now obsolete. Use the [[Draft_OrthoArray|Draft OrthoArray]], [[Draft_PolarArray|Draft PolarArray]] or [[Draft_CircularArray|Draft CircularArray]] command instead.
* La matriz se inicia como ortogonal por defecto, puedes cambiar su modo en las propiedades.


==Propiedades==
==Usage==


<div class="mw-translate-fuzzy">
* {{PropertyData|Array Type}}: Especifica el tipo de matriz orto o polar
==Utilizaación==


# Selecciona un objeto a partir del que desees crear una matriz
Para matrices ortogonales:
# Presiona el botón {{KEY|[[Image:Draft Array.png|16px]] [[Draft Array/es|Matriz]]}}
</div>


==Properties==
* {{PropertyData|Interval X}}: El intervalo entre cada copia sobre el primer eje
* {{PropertyData|Interval Y}}: El intervalo entre cada copia sobre el segundo eje
* {{PropertyData|Interval Z}}: El intervalo entre cada copia sobre el tercer eje
* {{PropertyData|Number X}}: El número de copias sobre el primer eje
* {{PropertyData|Number Y}}: El número de copias sobre el segundo eje
* {{PropertyData|Number Z}}: El número de copias sobre el tercer eje


See [[Draft_OrthoArray#Properties|Draft OrthoArray]].
Para matrices polares:


==Scripting==
* {{PropertyData|Axis}}: La dirección normal a la circunferencia de la matriz
* {{PropertyData|Center}}: El punto centro de la matriz
* {{PropertyData|Angle}}: El ángulo a cubrir con las copias
* {{PropertyData|Number Polar}}: El número de copias


See [[Draft_OrthoArray#Scripting|Draft OrthoArray]].
==Archivos de guión==


La herramienta Matriz se puede utilizar en [[macros/es|macros]] y desde la consola de Python utilizando la siguiente función:


<div class="mw-translate-fuzzy">
Para matrices ortogonales:
{{Docnav/es
<syntaxhighlight>
|
array (objectslist,xvector,yvector,xnum,ynum,[zvector,znum])
|
</syntaxhighlight>
|[[Draft_Workbench/es|Borrador]]
Para matrices polares:
|IconL=
<syntaxhighlight>
|IconR=
array (objectslist,center,totalangle,totalnum)
|IconC=Workbench_Draft.svg
</syntaxhighlight>
}}
* Creates an array of the objects contained in list (that can be an object or a list of objects) with, in case of rectangular array, xnum of iterations in the x direction at xvector distance between iterations, and same for y direction with yvector and ynum. In case of polar array, center is a vector, totalangle is the angle to cover (in degrees) and totalnum is the number of objects, including the original.
</div>
* This function produces standalone copies of the base object(s)


{{Draft Tools navi{{#translation:}}}}
=== Parametric array ===
{{Userdocnavi{{#translation:}}}}

Para matrices ortogonales:
<syntaxhighlight>
makeArray (object,xvector,yvector,xnum,ynum)
</syntaxhighlight>
Para matrices polares:
<syntaxhighlight>
makeArray (object,center,totalangle,totalnum)
</syntaxhighlight>
* Creates an array of the given object with, in case of rectangular array, xnum of iterations in the x direction at xvector distance between iterations, and same for y direction with yvector and ynum. In case of polar array, center is a vector, totalangle is the angle to cover (in degrees) and totalnum is the number of objects, including the original.
* The result of this function is a parametric Draft Array object.

Ejemplo:
<syntaxhighlight>
import FreeCAD,Draft
Draft.array(FreeCAD.ActiveDocument.ActiveObject,FreeCAD.Vector(2,0,0),FreeCAD.Vector(0,2,0),2,2)

</syntaxhighlight>
{{clear}}
<languages/>

Latest revision as of 08:25, 20 May 2023

Este comando está obsoleto en 0.19. Para el nuevo uso, vea Borrador ArregloOrtográfica, que funciona esencialmente de la misma manera. Vea también Borrador ArregloPolar y Borrador ArregloCircular.

Draft Array

Menu location
Borrador → Arreglo
Workbenches
Borrador
Default shortcut
None
Introduced in version
-
See also
Borrador ArregloPolar , Borrador ArregloCircular, Borrador ArregloTrayectorias, Borrador ArregloPuntos, Borrador Clon

Descripción

La Borrador Arreglo herramienta crea matrices ortogonalea (3 ejes) o polares a partir de los objetos seleccionados. Si no se selecciona ningún objeto, te solicitará que selecciones uno.

The command can be used on 2D objects created with the Draft Workbench or Sketcher Workbench, but also on many 3D objects such as those created with the Part Workbench, PartDesign Workbench or Arch Workbench.

This command is now obsolete. Use the Draft OrthoArray, Draft PolarArray or Draft CircularArray command instead.

Usage

Utilizaación

  1. Selecciona un objeto a partir del que desees crear una matriz
  2. Presiona el botón Matriz

Properties

See Draft OrthoArray.

Scripting

See Draft OrthoArray.