Defeaturing: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 25: Line 25:
Part.show(box4) #show defeatured shape
Part.show(box4) #show defeatured shape
}}
}}
[[File:box3.PNG|200px|thumb|left|Box3 Shape used in python code, before defeaturing]] [[File:box4.PNG|200px|thumb|left|Box4 Shape used in python code]]
[[File:box3.PNG|200px|thumb|left|Box3 shape used in python code, before defeaturing]] [[File:box4.PNG|200px|thumb|left|Box4 shape used in python code]]


</translate>
</translate>

Revision as of 11:41, 9 September 2019

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