Draft Split: Difference between revisions

From FreeCAD Documentation
(Moved a translation tag)
(Wording)
Line 45: Line 45:


<!--T:14-->
<!--T:14-->
* The clicked point is not necessarily located on the wire (i.e., not collinear). Consequently, in this case the resulting geometry differs from the one before the command was invoked.
* If an open wire is split and the clicked point does not lie exactly on the selected edge, the new point will not be collinear with that former edge. Use an appropriate [[Draft_Snap|Draft Snap]] option to prevent this.
* Non-editable (topology) objects of types [[Image:Workbench_Part.svg|24px]] Edge and [[Image:Workbench_Part.svg|24px]] Wire cannot be split (because they do not expose their Points). Try using {{Button|[[Image:Draft Upgrade.svg|16px]] [[Draft Upgrade]]}} on these objects first.
* To split objects that are not [[Draft_Line|Draft Lines]] or [[Draft_Wire|Draft Wires]] you can try using {{Button|[[Image:Draft_Upgrade.svg|16px]] [[Draft_Upgrade|Draft Upgrade]]}} on them one or more times first.
* The counterpart to this tool is the {{Button|[[Image:Draft Join.svg|16px]] [[Draft Join|Draft Join]]}} operation.
* The counterpart to this tool is the {{Button|[[Image:Draft Join.svg|16px]] [[Draft Join|Draft Join]]}} operation.



Revision as of 22:19, 20 February 2021

Draft Split

Menu location
Draft → Split
Workbenches
Draft
Default shortcut
S P
Introduced in version
0.18
See also
Draft Join

Description

The Draft Split tool attempts to split an existing Draft Wire or Draft Line at a specified edge.

Usage

  1. Press the Draft Split button or press S then P keys.
  2. Hover over (or nearby) a wire where you want to split it. The wire is highlighted. Click to split.

If the wire is open, you will create two wires, each ending at the point at which you clicked.

If the wire is closed, the edge which you clicked will be turned into its own open wire, and the remainder will convert into an open wire. You can think of this as "detaching" the selected wire.

Options

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

Notes

  • If an open wire is split and the clicked point does not lie exactly on the selected edge, the new point will not be collinear with that former edge. Use an appropriate Draft Snap option to prevent this.
  • To split objects that are not Draft Lines or Draft Wires you can try using Draft Upgrade on them one or more times first.
  • The counterpart to this tool is the Draft Join operation.

Scripting

See also: Draft API and FreeCAD Scripting Basics.

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

split(wire, newPoint, edgeIndex)