|
Menu location |
---|
Draft → PathArray |
Workbenches |
Draft, Arch |
Default shortcut |
None |
See also |
Draft Array |
The PathArray tool places copies of a selected shape along a selected path. The path can be a Wire or one or more Edges. The shapes can optionally be aligned with the tangent of the path. If required, a translation Vector can be specified to shift the shapes so the centroid is on the path. If no objects are selected, you will be invited to select them.
The PathArray tool can by used in macros and from the python console by using the following function:
makePathArray(shapeobject,pathobject,count,[translationvector],[alignment],[listofpathsubelements])
Example:
import FreeCAD,Draft Draft.makePathArray(base,path,items,centretrans,orient,pathsubs)
When "Align = false", PathArray's logic is quite easy to understand.
When "Align = true" the logic is a bit harder to grasp:
It is much easier to understand with pictures. The following images show how the array is produced, depending on which plane is the path.
Path on XY Plane
Path on XZ Plane
Path on YZ Plane
The clear advantage of this logic is that as you reorient the path but not the object, the result is consistent - object remains aligned to the path the way it was before reorienting the path.
(Thanks to @DeepSOIC for this explanation)