Defeaturing

From FreeCAD Documentation
Revision as of 11:44, 9 September 2019 by Brst (talk | contribs)
Other languages:


Introduction

3D Model Defeaturing got added with Open CASCADE 7.3 [1] and can be used for editing STEP models by removing of the features from the model.

It is also possible to direct modeling the model, when the history of operations is unavailable. (This is the case for 3d STEP models). Defeaturing can also useful to remove proprietary details of the model before sharing it.

The easiest way to use defeaturing is by using the Defeaturng Workbench

Code snippet

Defeaturing can also be used with python:

box = Part.makeBox(10,10,10)
box2 = Part.makeBox(5,5,5,FreeCAD.Vector(5,5,0))
box3 = box.cut(box2)
Part.show(box3)
faces = App.ActiveDocument.ActiveObject.Shape.Faces[6:] #the faces of box3 that are part of the corner pocket
box4 = App.ActiveDocument.ActiveObject.Shape.defeaturing(faces) #defeature the shape
Part.show(box4) #show defeatured shape
Box3 shape used in python code, before defeaturing
Box4 shape used in python code