Draft Join/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 25: Line 25:
==Описание==
==Описание==


The {{Button|[[Image:Draft Join.svg|16px]] [[Draft_Join|Draft Join]]}} tool attempts to join all wires currently in the selection into a single wire.
The {{Button|[[Image:Draft Join.svg|16px]] [[Draft_Join|Draft Join]]}} tool attempts to join all selected [[Draft_Line|Draft Lines]] and [[Draft_Wire|Draft Wires]] into a single wire.

The counterpart to this tool is the {{Button|[[Image:Draft Split.svg|16px]] [[Draft Split|Draft Split]]}} operation.


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


# Select two or more wires that you wish to join together.
# Select two or more lines or wires that you wish to join together.
# Press the {{Button|[[Image:Draft Join.svg|16px]] [[Draft Join|Draft Join]]}} button or press {{KEY|J}} then {{KEY|O}} keys.
# Press the {{Button|[[Image:Draft_Join.svg|16px]] [[Draft_Join|Draft Join]]}} button or press {{KEY|J}} then {{KEY|O}} keys.


If the open end of a wire in your selection coincides with the open end of another wire in your selection, they will be joined into a single wire. The properties of the first wire in your selection will remain and the rest of the objects will be deleted.
If the open end of a wire in your selection coincides with the open end of another wire in your selection, they will be joined into a single wire. The properties of the first wire in your selection will remain and the rest of the objects will be deleted.
Line 39: Line 37:


There are no options for this tool. Either it works with the selected objects or not.
There are no options for this tool. Either it works with the selected objects or not.

== Notes ==

* Non-editable (topology) objects of types [[Image:Workbench_Part.svg|24px]] Edge and [[Image:Workbench_Part.svg|24px]] Wire cannot be joined (because they do not expose their Points). Try using {{Button|[[Image:Draft Upgrade.svg|16px]] [[Draft Upgrade]]}} on these objects first.
* The counterpart to this tool is the {{Button|[[Image:Draft Split.svg|16px]] [[Draft Split|Draft Split]]}} operation.



==Scripting==
==Scripting==

Revision as of 21:37, 20 February 2021

Draft Join

Системное название
Draft Join
Расположение в меню
Draft → Join
Верстаки
Draft, Arch
Быстрые клавиши
J O
Представлено в версии
0.18
См. также
Draft Split

Описание

The Draft Join tool attempts to join all selected Draft Lines and Draft Wires into a single wire.

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

  1. Select two or more lines or wires that you wish to join together.
  2. Press the Draft Join button or press J then O keys.

If the open end of a wire in your selection coincides with the open end of another wire in your selection, they will be joined into a single wire. The properties of the first wire in your selection will remain and the rest of the objects will be deleted.

Options

There are no options for this tool. Either it works with the selected objects or not.

Notes

  • Non-editable (topology) objects of types Edge and Wire cannot be joined (because they do not expose their Points). Try using Draft Upgrade on these objects first.
  • The counterpart to this tool is the Draft Split operation.


Scripting

See also: Draft API and FreeCAD Scripting Basics.

The Join tool can be used in macros and from the Python console by using the following functions:

joinWires(wires)
joinTwoWires(wire1, wire2)