Macro Remove parametric history/es


Text-x-python.png Remove parametric history

Descripción
Esta macro eliminará toda la asociatividad paramétrica de un objeto, dejándolo como una forma "tonta"
Autor
Yorik
Vista
Macros recipes
How to install macros
How to customize toolbars
Version
0.1
Fecha de la última modificación
2011-08-01


Description

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


Before and after:


RPH before.png
RPH after.png

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 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_Remove_parametric_history/es&oldid=240815"

Navigation menu