|
Ubicación en el Menú |
---|
Boceto → Matriz |
Entornos de trabajo |
Boceto, Arquitectura |
Atajo de teclado por defecto |
None |
Ver también |
None |
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.
The Array tool can by used in macros and from the python console by using one of the following functions, depending if you wish to obtain simple, standalone copies of your base object, or a parametric array object, that stays linked to the original object.
array (objectslist,xvector,yvector,xnum,ynum,[zvector,znum])
array (objectslist,center,totalangle,totalnum)
Ejemplo:
Para matrices polares:
Para matrices ortogonales:
makeArray (object,xvector,yvector,xnum,ynum)
For polar array:
makeArray (object,center,totalangle,totalnum)
Para matrices polares:
import FreeCAD,Draft Draft.array(FreeCAD.ActiveDocument.ActiveObject,FreeCAD.Vector(2,0,0),FreeCAD.Vector(0,2,0),2,2)