|
Расположение в меню |
---|
Деталь → Split → Slice |
Верстаки |
Part |
Быстрые клавиши |
отсутствуют |
См. также |
Part Boolean Fragments, Part XOR, Join features, Part Booleans |
Tool to split shapes by intersection with other shapes. For example, for a box and a plane, a compound of two solids is created.
(on the picture above, the pieces were moved apart manually afterwards, to reveal the slicing)
The output shape occupies the same space as the original. But it is split where it intersects with other shapes. The split pieces are put into a compound (or compsolid), so the object appears to remain in one piece. You need to explode the compound to get the individual pieces. If you want to access the individual pieces in a parametric way you can use Part CompoundFilter for the purpose. For quick non parametric access use Draft Downgrade.
The tool has three modes: "Standard", "Split", and "CompSolid".
"Standard" and "Split" differ by the action of the tool on wires, shells and compsolids: if "Split", those are separated; if "Standard", they are kept together (get extra segments).
Compounding structure in "Standard" and "Split" modes follows the compounding structure of shape being sliced.
In "CompSolid" mode, the output is a compsolid (or a compound of compsolids, if the resulting solids form more than one island of connectedness). Compsolid is a set of solids connected by faces; they are related to solids like wires are related to edges, and shells are related to faces; the name is probably a shortened phrase "composite solid".
The overall action of the tool is very similar to Boolean Fragments, except only the pieces from the first shape are in the result.
A Slice parametric object is created. Original objects are hidden, and the result of intersection is shown in 3D view.
Slice
The tool can by used in macros and from the python console by using the following function:
BOPTools.SplitFeatures.makeSlice(name)
Slice can also be applied to plain shapes, without the need to have a document object, via:
Part.BOPTools.SplitAPI.slice(base_shape, tool_shapes, mode, tolerance = 0.0)
This can be useful for making custom Python scripted features.
Example:
import Part j = Part.BOPTools.SplitFeatures.makeSlice(name= 'Slice') j.Base = FreeCADGui.Selection.getSelection()[0] j.Tools = FreeCADGui.Selection.getSelection()[1:]
The tool itself is implemented in Python, see /Mod/Part/BOPTools/SplitFeatures.py under where FreeCAD is installed.
The tool was introduced in FreeCAD v0.17.8053. FreeCAD needs to be compiled with OCC 6.9.0 or later; otherwise, the tool is unavailable.