Draft Array/cs


Draft Array.png Kreslení Pole

Umístění Menu
Draft → Array
Pracovní stoly
Kreslení, Architektura
Výchozí zástupce
Nikdo
Viz také
PathArray


Popis

Nástroj Pole vytváří ortogonální (3-osy) nebo polární pole z vybraných objektů. Není-li vybrán žádný objekt, budete vyzváni k jeho výběru.

Draft Array example.jpg

How to use

  1. Select an object you wish to make an array with
  2. Press the Draft Array.png Draft Array button
  3. Select DATAArray Type: Specifies the type of the array, ortho or polar
  4. For orthogonal arrays:
    1. DATAInterval X: The interval between each copy on the first axis
    2. DATAInterval Y: The interval between each copy on the second axis
    3. DATAInterval Z: The interval between each copy on the third axis
    4. DATANumber X: The number of copies on the first axis
    5. DATANumber Y: The number of copies on the second axis
    6. DATANumber Z: The number of copies on the third axis
  5. For polar arrays:
    1. DATAAxis: The normal direction of the array circle
    2. DATACenter: The center point of the array
    3. DATAAngle: The angle to cover with copies
    4. DATANumber Polar: The number of copies

Scripting

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.

Simple array

For rectangular array:

array (objectslist,xvector,yvector,xnum,ynum,[zvector,znum]) 

For polar array:

array (objectslist,center,totalangle,totalnum) 

Parametric array

Pro obdélníkové pole:

makeArray (object,xvector,yvector,xnum,ynum) 

For polar array:

makeArray (object,center,totalangle,totalnum) 

Example:

import FreeCAD,Draft
Draft.array(FreeCAD.ActiveDocument.ActiveObject,FreeCAD.Vector(2,0,0),FreeCAD.Vector(0,2,0),2,2) 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Draft_Array/cs&oldid=221370"

Navigation menu