Draft PathArray/es: Difference between revisions

From FreeCAD Documentation
(Created page with "La herramienta PathArray coloca copias de una forma seleccionada a lo largo de una ruta seleccionada. La ruta puede ser un cable o uno o más bordes. Las formas pueden alinear...")
(Created page with "==Como utilizar==")
Line 8: Line 8:
[[Image:Draft_PathArray_Example.png|400px]]
[[Image:Draft_PathArray_Example.png|400px]]


==How to use==
==Como utilizar==


# Create a shape object you wish to distribute. You will get the best results if your object is '''centred around the origin''', even if the path starts somewhere else.
# Create a shape object you wish to distribute. You will get the best results if your object is '''centred around the origin''', even if the path starts somewhere else.

Revision as of 11:18, 13 November 2018

Draft PathArray

Ubicación en el Menú
Draft → PathArray
Entornos de trabajo
Draft, Arch
Atajo de teclado por defecto
Ninguno
Introducido en versión
-
Ver también
Draft Array

Descripción

La herramienta PathArray coloca copias de una forma seleccionada a lo largo de una ruta seleccionada. La ruta puede ser un cable o uno o más bordes. Las formas pueden alinearse opcionalmente con la tangente del camino. Si es necesario, se puede especificar un vector de translación para cambiar las formas de modo que el centroide esté en la ruta. Si no se seleccionan objetos, se le invitará a seleccionarlos.

Como utilizar

  1. Create a shape object you wish to distribute. You will get the best results if your object is centred around the origin, even if the path starts somewhere else.
  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 button.

Options

  • The array starts with shape copies which are not aligned to the path, nor translated to a new position by default. You can then change the count, alignment and/or translation vector in the properties.

Properties

  • DatosBase: The shape object
  • DatosPathObj: The path object
  • DatosPathSubs: The subelements(edges) of path object to be used as the path
  • DatosCount: The number of time to copy the shape
  • DatosXlate: The translation vector
  • DatosAlign: True to align the shapes to the path, False to leave shapes in their default orientation.

Scripting

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])
  • Distribute count copies of a document shapeobject along a pathobject or subobjects of a pathobject. Optionally translates each copy by FreeCAD.Vector xlate direction and distance to adjust for difference in shape centre vs shape reference point. Optionally aligns baseobject to tangent/normal/binormal of path.

Example:

import FreeCAD,Draft
Draft.makePathArray(base,path,items,centretrans,orient,pathsubs)

Usage Notes

  • Align + Xlate: When Align is True, the Xlate vector is relative to the local (tangent/normal/binormal) coordinates. When Align is False, the Xlate vector is relative to the global (XYZ) coordinates.

Limitations

  • This tool is not available before version 0.14
  • The PathSubs Property does not yet appear in the properties list.

Technical Explanation

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

Align false
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.

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
XY Plane

Path on XY Plane

XZ Plane
XZ Plane

Path on XZ Plane

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