==Python API==
made it possible to remove curves from python with "del curve[i]" mesh_edges2curves.py - remove unused function.
This commit is contained in:
@@ -39,17 +39,8 @@ Supported:<br>
|
||||
# ***** END GPL LICENCE BLOCK *****
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
|
||||
from Blender import *
|
||||
|
||||
def edkey(ed):
|
||||
i1 = ed.v1.index
|
||||
i2 = ed.v2.index
|
||||
if i1>i2:
|
||||
return (i2,i1), ed
|
||||
else:
|
||||
return (i1,i2), ed
|
||||
|
||||
def polysFromMesh(me):
|
||||
# a polyline is 2
|
||||
#polylines are a list
|
||||
|
||||
Reference in New Issue
Block a user