Arch AxisSystem: Difference between revisions

From FreeCAD Documentation
(Created page with "<translate> {{GuiCommand|Name=Arch AxisSystem|Workbenches=Arch|MenuLocation=Arch -> Axis|SeeAlso=Arch Axis}} ==Description== The Axis System tool allows...")
 
(Marked this version for translation)
Line 1: Line 1:
<translate>
<translate>
<!--T:1-->
{{GuiCommand|Name=Arch AxisSystem|Workbenches=[[Arch Module|Arch]]|MenuLocation=Arch -> Axis|SeeAlso=[[Arch Axis]]}}
{{GuiCommand|Name=Arch AxisSystem|Workbenches=[[Arch Module|Arch]]|MenuLocation=Arch -> Axis|SeeAlso=[[Arch Axis]]}}


==Description==
==Description== <!--T:2-->


<!--T:3-->
The Axis System tool allows you to combine 2 or 3 [[Arch Axis]] objects. The main function of this tool is to calculate intersection points between the different axes included in this system. Arch objects can then use this system to duplicate their shape on the different intersection points.
The Axis System tool allows you to combine 2 or 3 [[Arch Axis]] objects. The main function of this tool is to calculate intersection points between the different axes included in this system. Arch objects can then use this system to duplicate their shape on the different intersection points.


<!--T:4-->
[[Image:Arch AxisSystem example.jpg|600px]]
[[Image:Arch AxisSystem example.jpg|600px]]


<!--T:5-->
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.
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.


==How to use==
==How to use== <!--T:6-->


<!--T:7-->
# 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
# Press the {{KEY|[[Image:Arch AxisSystem.png|16px]] [[Arch AxisSystem]]}} button
# Press the {{KEY|[[Image:Arch AxisSystem.png|16px]] [[Arch AxisSystem]]}} button
Line 18: Line 23:
# 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
# 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==
==Options== <!--T:8-->


<!--T:9-->
* A same [[Arch Axis]] object can be part of more than one system
* 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
* 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==
==Scripting== <!--T:10-->


<!--T:11-->
The Axis System tool can by used in [[macros]] and from the python console by using the following function:
The Axis System tool can by used in [[macros]] and from the python console by using the following function:
</translate>
</translate>
Line 32: Line 39:
<translate>
<translate>


<!--T:12-->
Makes an Axis System based on the given list of [[Arch Axis]]
Makes an Axis System based on the given list of [[Arch Axis]]


<!--T:13-->
Example:
Example:
</translate>
</translate>

Revision as of 17:00, 1 August 2017

Arch AxisSystem

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

Description

The Axis System tool allows you to combine 2 or 3 Arch Axis objects. The main function of this tool is to calculate intersection points between the different axes included in this system. Arch objects can then use this system to duplicate their shape on the different intersection points.

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.

How to use

  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])