Draft PathArray/cs


Draft PathArray.png Kreslení TrasovéPole

Umístění Menu
Draft → PathArray
Pracovní stoly
Kreslení, Architektura
Výchozí zástupce
Nikdo
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 podle trasy. 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.

Draft PathArray Example.png

Použití

  1. Vyberte objekt tvaru, který chcete kopírovat.
  2. Vyberte objekt trasy, po které chcete tvar kopírovat -nebo-
  3. Vyberte nějaké hrany pro určení trasy.
  4. Stiskněte tlačítko Draft PathArray.png Kreslení TrasovéPole.

Volby

Vlastnosti

Skriptování

Nástroj TrasovéPole může být využit v makrech a z konzoly Pythonu použitím následující funkce:

makePathArray(shapeobject,pathobject,count,[translationvector],[alignment],[listofpathsubelements]) 

Příklad:

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

Usage Notes

Omezení

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/cs&oldid=208396"

Navigation menu