Draft PathArray/cs: Difference between revisions

From FreeCAD Documentation
(Created page with "==Popis==")
(Created page with "Nástroj TrasovéPole umístí vybraný tvar na vybranou trasu. trasa může být drát nebo jedna nebo více hran. Tvary na trase mohou být volitelně zarovnány tak, že se...")
Line 3: Line 3:
==Popis==
==Popis==


Nástroj TrasovéPole umístí vybraný tvar na vybranou trasu. trasa může být drát nebo jedna nebo více hran. Tvary na trase mohou být volitelně zarovnány tak, že se trasy dotýkají. Podle potřeby může být specifikován Vektor pro posunutí tvaru tak, že těžiště tvaru bude na trase. Pokud není vybrán žádný objekt, budete vyzváni k jeho výběru.
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.


[[Image:Draft_PathArray_Example.png|400px]]
[[Image:Draft_PathArray_Example.png|400px]]

Revision as of 16:39, 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

Nástroj TrasovéPole umístí vybraný tvar na vybranou trasu. trasa může být drát nebo jedna nebo více hran. Tvary na trase mohou být volitelně zarovnány tak, že se trasy dotýkají. Podle potřeby může být specifikován Vektor pro posunutí tvaru tak, že těžiště tvaru bude na trase. Pokud není vybrán žádný objekt, budete vyzváni k jeho výběru.

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.