Macro FlattenWire

Text-x-python.png FlattenWire

Description
This macro flattens draft wires that are not plane to their median Z coordinate
Author
Yorik
Links
Macros recipes
How to install macros
How to customize toolbars
Version
1.0
Date last modification
2011-08-01

Contents


This macro flattens draft wires that are not plane to their median Z coordinate

import FreeCAD
obj = FreeCAD.ActiveDocument.ActiveObject
z = 0
for p in obj.Points: z += p.z
z = z/len(obj.Points)
newpoints = []
for p in obj.Points: newppoints.append(FreeCAD.Vector(p.x,p.y,z))
obj.Points = newppoints 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_FlattenWire&oldid=240757"

Navigation menu