Draft PathArray/sv


Draft PathArray.png Draft PathArray

Menyplacering
Draft → PathArray
Arbetsbänk(ar)
Draft, Arch
Standard genväg
None
Se även
Draft Array


Beskrivning

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.

Draft PathArray Example.png

Bruk

  1. Select a shape object you wish to distribute.
  2. Select a path object along which the shapes will be distributed. -or-
  3. Select some edges of a path object.
  4. Press the Draft PathArray.png Draft PathArray button.

Options

Properties

Skript

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) 

Usage Notes

Limitations

Technical Explanation

When "Align = false", PathArray's logic is quite easy to understand.

Align false


When "Align = true" the logic is a bit harder to grasp:

  1. Construct Frenet coordinate systems on the path (X is tangent, Z is normal, Y is binormal).
  2. Copy the original object to every on-path coordinate system, so that the global origin is matched with the on-path coordinate system origin.
Patharray alignment annotated.png


It is much easier to understand with pictures. The following images show how the array is produced, depending on which plane is the path.

XY Plane

Path on XY Plane

XZ Plane

Path on XZ Plane

YZ 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)

Online version: "http://www.freecadweb.org/wiki/index.php?title=Draft_PathArray/sv&oldid=208401"

Navigation menu