Arch AxisSystem/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "'' На приведенном выше рисунке показаны три объекта Arch Axis, объединенные в одну систему Axis. Зате...")
(Created page with "==Использование==")
Line 10: Line 10:
'' На приведенном выше рисунке показаны три объекта [[Arch Axis]], объединенные в одну систему Axis. Затем объект столбца использует эту систему как свое свойство '''Axis''', чтобы иметь форму, дублируемую в каждой точке пересечения. ''
'' На приведенном выше рисунке показаны три объекта [[Arch Axis]], объединенные в одну систему Axis. Затем объект столбца использует эту систему как свое свойство '''Axis''', чтобы иметь форму, дублируемую в каждой точке пересечения. ''


==Использование==
==How to use==


# Optionally, select the [[Arch Axis]] objects you wish to include in this system
# Optionally, select the [[Arch Axis]] objects you wish to include in this system

Revision as of 11:37, 29 November 2018

Arch AxisSystem

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

Описание

Средство Axis System позволяет объединить 2 или 3 объекта Arch Axis. Основная функция этого инструмента - рассчитать точки пересечения между различными осями, включенными в эту систему. Объекты Arch могут затем использовать эту систему для дублирования их формы в разных точках пересечения.

На приведенном выше рисунке показаны три объекта Arch Axis, объединенные в одну систему Axis. Затем объект столбца использует эту систему как свое свойство Axis, чтобы иметь форму, дублируемую в каждой точке пересечения.

Использование

  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

Options

  • 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

Scripting

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

makeAxisSystem ([axes])

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

Example:

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