Draft PathArray/cs: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/cs|Name=Draft_PathArray|Name/cs=Kreslení TrasovéPole|Workbenches=Kreslení, Architektura|MenuLocation=Draft -> PathArray|...")
(Created page with "==Popis==")
Line 1: Line 1:
{{GuiCommand/cs|Name=Draft_PathArray|Name/cs=Kreslení TrasovéPole|Workbenches=[[Draft Module/cs|Kreslení]], [[Arch Module/cs|Architektura]]|MenuLocation=Draft -> PathArray|SeeAlso=[[Draft Array]] }}
{{GuiCommand/cs|Name=Draft_PathArray|Name/cs=Kreslení TrasovéPole|Workbenches=[[Draft Module/cs|Kreslení]], [[Arch Module/cs|Architektura]]|MenuLocation=Draft -> PathArray|SeeAlso=[[Draft Array]] }}


==Description==
==Popis==


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

Revision as of 16:34, 25 February 2014

Kreslení TrasovéPole

Umístění Menu
Draft -> PathArray
Pracovní stoly
Kreslení, Architektura
Výchozí zástupce
Nikdo
Představen ve verzi
-
Viz také
Draft Array

Popis

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.

How to use

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

  • ÚdajeBase: The shape object
  • ÚdajePathObj: The path object
  • ÚdajePathSubs: The subelements(edges) of path object to be used as the path
  • ÚdajeCount: The number of time to copy the shape
  • ÚdajeXlate: The translation vector
  • ÚdajeAlign: 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)

Limitations

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