Arch Axis/uk: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 10: Line 10:
[[Image:Arch Axis example.jpg|600px]]
[[Image:Arch Axis example.jpg|600px]]


The image above shows two different axis objects positioned perpendicularly to each other
''The image above shows two different axis objects positioned perpendicularly to each other''


==How to use==
==How to use==
Line 48: Line 48:
Arch.makeAxis(5,2)
Arch.makeAxis(5,2)
}}
}}

[[Category:Arch]]

Revision as of 16:57, 25 November 2018

Arch Axis

Меню прокату
Arch -> Axis
Верстаки
Arch
Ярлик за умовчанням
A X
Введено у версії
-
Дивись також
Жоден

Description

The Axis tool allows you to places a series of axes in the current document. The distance and the angle between axes is customizable, as well as the numbering style. The axes serve mainly as references to snap objects onto, but can also be used together with Axes Systems, and can also be referenced by other Arch objects to create parametric arrays, for example of beams or columns. Grids can also be used in places of axes.

The image above shows two different axis objects positioned perpendicularly to each other

How to use

  1. Press the Arch Axis button, or press A then X keys
  2. Move/rotate the axes system to the desired position
  3. Enter edit mode by double-clicking the axes system in the tree view to adjust its settings like number of axes, distances and angles between axes.

Options

  • Each axis in the series has its own distance and angle in relation to the previous axis. This allows to do very complex systems such as non-orthogonal systems, polar systems or any kind of non-uniform system
  • Double-clicking the axis in the tree view allows to edit the distances, angles and labels of each axis
  • Axes length, size of the bubbles and numbering styles are customizable directly via the axes system's properties
  • Each axis can also display a label, also editable via the task panel dialog

Properties

  • ДаніLength: The length of the axes
  • ВиглядBubble Size: The size of the axis bubbles
  • ВиглядNumeration style: How the axes are numbered: 1,2,3, A,B,C, etc...
  • ВиглядBubble Position: Where the bubble is placed on the axis: At start point, endpoint, both or none.
  • ВиглядFont Name: A font to draw the bubble number and/or labels
  • ВиглядFont Size: The size of the label text only (bubble text is controlled by the bubble size)
  • ВиглядShow Labels: Turns the display of the label texts on/off

Scripting

The Axis tool can by used in macros and from the python console by using the following function:

makeAxis ([number],[interval])
makes an axes series based on the given number of axes and interval distance

Example:

import Arch
Arch.makeAxis(5,2)