Arch AxisSystem/ro: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 8: Line 8:
[[Image:Arch AxisSystem example.jpg|600px]]
[[Image:Arch AxisSystem example.jpg|600px]]


The above image shows three [[Arch Axis]] objects combined into one Axis System. A column object then uses this system as its '''Axis''' property, to have its shape duplicated at each intersection point.
Imaginea de mai jos arată trei obiecte [[Arch Axis]] combinate într-un Axis System. Un obiect coloană utilizează acest sistem ca pe propria '''Axis''' , pentru a avea propria formă duplicată la fiecare punct de intersecție.


== Cum se folosește ==
== Cum se folosește ==

Revision as of 07:34, 12 August 2018

Arch AxisSystem

Menu location
Arch → Axis System
Workbenches
Arch
Default shortcut
None
Introduced in version
-
See also
Arch Axis

Descriere

Instrumentul Axis System vă permite să combinați 2 sau 3 obiecte Arch Axis. Funcția principală a acestui instrument este de a calcula punctele de intersecție dintre diferitele axe incluse în acest sistem. Obiectele atelierul Arch pot folosi acest sistem pentru a duplica forma lor la diferite punctele de intersecție.

Imaginea de mai jos arată trei obiecte Arch Axis combinate într-un Axis System. Un obiect coloană utilizează acest sistem ca pe propria Axis , pentru a avea propria formă duplicată la fiecare punct de intersecție.

Cum se folosește

  1. Optionally, select the Arch Axis objects you wish to include in this system
  2. Press the Arch AxisSystem button
  3. Right-click the newly created axes system object in the tree view to add/edit the Arch Axis objects included in this system
  4. Select any existing Arch Axis and press Add or Delete buttons to add or remove it to/from this system
  5. Set the Axis property of any Arch object to point to this system, to have its shape duplicated to the intersection points of this system

Opţiuni

  • A same Arch Axis object can be part of more than one system
  • Any shape-based object can also be used as the Axis property of Arch objects. In this case, the object shape will be duplicated along the vertices of the Axis object

Script

Instrumentul Axis System poate fi utilizat în macros și de la consola python utilizând umătoarea funcție:

makeAxisSystem ([axes])

Makes an Axis System based on the given list of Arch Axis

Exempluː

import Arch
a = Arch.makeAxis(5,2)
Arch.makeAxisSystem([a])