Macro FlattenWire/de


Text-x-python.png FlattenWire

Beschreibung
This macro flattens draft wires that are not plane to their median Z coordinate
Autor
Yorik
Link
Liste von Macros
How to install macros
How to customize toolbars
Version
1.0
Datum zuletzt geƤndert
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/de&oldid=240775"

Navigation menu