Makro Odebrat historii parametrů

From FreeCAD Documentation
Revision as of 08:47, 24 May 2014 by Renatorivo (talk | contribs) (Created page with "left File:RPH_after.png {{clear}}")

File:Text-x-python Remove parametric history

Description
Odebere všechny parametrické asociace z objektu ponechajíc ho jako osamocené těleso

Author: Yorik
Author
Yorik
Download
None
Links
Macro Version
1.0
Date last modified
None
FreeCAD Version(s)
None
Default shortcut
None
See also
None

Description

This will remove all parametric associativity from an object, leaving it as a "dumb" shape


Before and after:


Script

Remove parametric history.FCMacro

originalObject = FreeCAD.ActiveDocument.ActiveObject
newShape = originalObject.Shape.copy()
newName = FreeCAD.ActiveDocument.ActiveObject.Name
FreeCAD.ActiveDocument.removeObject(newName)
newObject = FreeCAD.ActiveDocument.addObject("Part::Feature",newName)
newObject.Shape = newShape
Other languages: