2004-08-04 06:16:46 +00:00
|
|
|
#!BPY
|
|
|
|
|
|
|
|
"""
|
2007-03-19 03:22:42 +00:00
|
|
|
Name: 'Skin Faces/Edge-Loops'
|
2007-02-06 11:16:49 +00:00
|
|
|
Blender: 243
|
2007-03-19 03:22:42 +00:00
|
|
|
Group: 'MeshFaceKey'
|
2005-10-11 02:32:58 +00:00
|
|
|
Tooltip: 'Select 2 vert loops, then run this script.'
|
2004-08-04 06:16:46 +00:00
|
|
|
"""
|
|
|
|
|
2005-06-13 17:21:30 +00:00
|
|
|
__author__ = "Campbell Barton AKA Ideasman"
|
2006-12-25 23:14:48 +00:00
|
|
|
__url__ = ["blenderartists.org", "www.blender.org"]
|
|
|
|
__version__ = "1.1 2006/12/26"
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
__bpydoc__ = """\
|
|
|
|
With this script vertex loops can be skinned: faces are created to connect the
|
|
|
|
selected loops of vertices.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
In mesh Edit mode select the vertices of the loops (closed paths / curves of
|
|
|
|
vertices: circles, for example) that should be skinned, then run this script.
|
2005-10-11 02:32:58 +00:00
|
|
|
A pop-up will provide further options, if the results of a method are not adequate try one of the others.
|
2004-11-07 16:31:13 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
2004-08-04 06:16:46 +00:00
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Skin Selected edges 1.0 By Campbell Barton (AKA Ideasman)
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# ***** END GPL LICENCE BLOCK *****
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
|
2006-12-14 14:53:32 +00:00
|
|
|
# Made by Ideasman/Campbell 2005/06/15 - cbarton@metavr.com
|
2004-08-04 06:16:46 +00:00
|
|
|
|
|
|
|
import Blender
|
2007-03-26 19:44:44 +00:00
|
|
|
import bpy
|
2006-12-25 23:14:48 +00:00
|
|
|
from Blender import Window
|
2006-12-28 06:51:44 +00:00
|
|
|
from Blender.Mathutils import MidpointVecs, Vector, CrossVecs
|
|
|
|
from Blender.Mathutils import AngleBetweenVecs as _AngleBetweenVecs_
|
2007-02-06 11:16:49 +00:00
|
|
|
import BPyMessages
|
2006-12-28 06:51:44 +00:00
|
|
|
|
2006-12-25 23:14:48 +00:00
|
|
|
from Blender.Draw import PupMenu
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
BIG_NUM = 1<<30
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
global CULL_METHOD
|
|
|
|
CULL_METHOD = 0
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2006-07-30 05:48:28 +00:00
|
|
|
def AngleBetweenVecs(a1,a2):
|
|
|
|
try:
|
2006-12-28 06:51:44 +00:00
|
|
|
return _AngleBetweenVecs_(a1,a2)
|
2006-07-30 05:48:28 +00:00
|
|
|
except:
|
|
|
|
return 180.0
|
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
class edge(object):
|
|
|
|
__slots__ = 'v1', 'v2', 'co1', 'co2', 'length', 'removed', 'match', 'cent', 'angle', 'next', 'prev', 'normal', 'fake'
|
2005-10-11 02:32:58 +00:00
|
|
|
def __init__(self, v1,v2):
|
|
|
|
self.v1 = v1
|
|
|
|
self.v2 = v2
|
2006-07-29 19:32:07 +00:00
|
|
|
co1, co2= v1.co, v2.co
|
|
|
|
self.co1= co1
|
|
|
|
self.co2= co2
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# uv1 uv2 vcol1 vcol2 # Add later
|
2006-07-29 19:32:07 +00:00
|
|
|
self.length = (co1 - co2).length
|
2006-07-18 10:20:43 +00:00
|
|
|
self.removed = 0 # Have we been culled from the eloop
|
|
|
|
self.match = None # The other edge were making a face with
|
2006-07-29 19:32:07 +00:00
|
|
|
|
2006-12-25 23:14:48 +00:00
|
|
|
self.cent= MidpointVecs(co1, co2)
|
2006-07-29 19:32:07 +00:00
|
|
|
self.angle= 0.0
|
2007-01-05 16:41:04 +00:00
|
|
|
self.fake= False
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
class edgeLoop(object):
|
|
|
|
__slots__ = 'centre', 'edges', 'normal', 'closed', 'backup_edges'
|
|
|
|
def __init__(self, loop, me, closed): # Vert loop
|
2005-10-11 02:32:58 +00:00
|
|
|
# Use next and prev, nextDist, prevDist
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# Get Loops centre.
|
2006-07-27 03:15:37 +00:00
|
|
|
fac= len(loop)
|
2007-01-05 16:41:04 +00:00
|
|
|
verts = me.verts
|
|
|
|
self.centre= reduce(lambda a,b: a+verts[b].co/fac, loop, Vector())
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
# Convert Vert loop to Edges.
|
2007-01-05 16:41:04 +00:00
|
|
|
self.edges = [edge(verts[loop[vIdx-1]], verts[loop[vIdx]]) for vIdx in xrange(len(loop))]
|
|
|
|
|
|
|
|
if not closed:
|
|
|
|
self.edges[0].fake = True # fake edge option
|
|
|
|
|
|
|
|
self.closed = closed
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
# Assign linked list
|
2006-07-10 09:22:07 +00:00
|
|
|
for eIdx in xrange(len(self.edges)-1):
|
2005-10-11 02:32:58 +00:00
|
|
|
self.edges[eIdx].next = self.edges[eIdx+1]
|
|
|
|
self.edges[eIdx].prev = self.edges[eIdx-1]
|
|
|
|
# Now last
|
|
|
|
self.edges[-1].next = self.edges[0]
|
|
|
|
self.edges[-1].prev = self.edges[-2]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# GENERATE AN AVERAGE NORMAL FOR THE WHOLE LOOP.
|
2006-12-25 23:14:48 +00:00
|
|
|
self.normal = Vector()
|
2005-10-11 02:32:58 +00:00
|
|
|
for e in self.edges:
|
2006-12-25 23:14:48 +00:00
|
|
|
n = CrossVecs(self.centre-e.co1, self.centre-e.co2)
|
2005-10-11 02:32:58 +00:00
|
|
|
# Do we realy need tot normalize?
|
|
|
|
n.normalize()
|
|
|
|
self.normal += n
|
2006-07-29 19:32:07 +00:00
|
|
|
|
|
|
|
# Generate the angle
|
|
|
|
va= e.cent - e.prev.cent
|
2006-07-30 05:48:28 +00:00
|
|
|
vb= e.next.cent - e.cent
|
2006-07-29 19:32:07 +00:00
|
|
|
|
2006-07-30 05:48:28 +00:00
|
|
|
e.angle= AngleBetweenVecs(va, vb)
|
2005-10-11 02:32:58 +00:00
|
|
|
|
2006-07-29 19:32:07 +00:00
|
|
|
# Blur the angles
|
|
|
|
#for e in self.edges:
|
|
|
|
# e.angle= (e.angle+e.next.angle)/2
|
|
|
|
|
|
|
|
# Blur the angles
|
|
|
|
#for e in self.edges:
|
|
|
|
# e.angle= (e.angle+e.prev.angle)/2
|
|
|
|
|
|
|
|
self.normal.normalize()
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
# Generate a normal for each edge.
|
|
|
|
for e in self.edges:
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2006-07-29 19:32:07 +00:00
|
|
|
n1 = e.co1
|
|
|
|
n2 = e.co2
|
|
|
|
n3 = e.prev.co1
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
a = n1-n2
|
|
|
|
b = n1-n3
|
2006-12-25 23:14:48 +00:00
|
|
|
normal1 = CrossVecs(a,b)
|
2005-10-11 02:32:58 +00:00
|
|
|
normal1.normalize()
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2006-07-29 19:32:07 +00:00
|
|
|
n1 = e.co2
|
|
|
|
n3 = e.next.co2
|
|
|
|
n2 = e.co1
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
a = n1-n2
|
|
|
|
b = n1-n3
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2006-12-25 23:14:48 +00:00
|
|
|
normal2 = CrossVecs(a,b)
|
2005-10-11 02:32:58 +00:00
|
|
|
normal2.normalize()
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# Reuse normal1 var
|
|
|
|
normal1 += normal1 + normal2
|
|
|
|
normal1.normalize()
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
e.normal = normal1
|
|
|
|
#print e.normal
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def backup(self):
|
|
|
|
# Keep a backup of the edges
|
2007-01-05 16:41:04 +00:00
|
|
|
self.backup_edges = self.edges[:]
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
def restore(self):
|
2007-01-05 16:41:04 +00:00
|
|
|
self.edges = self.backup_edges[:]
|
2005-10-11 02:32:58 +00:00
|
|
|
for e in self.edges:
|
|
|
|
e.removed = 0
|
|
|
|
|
|
|
|
def reverse(self):
|
|
|
|
self.edges.reverse()
|
2007-01-09 09:24:20 +00:00
|
|
|
self.normal.negate()
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
for e in self.edges:
|
2007-01-05 16:41:04 +00:00
|
|
|
e.normal.negate()
|
2005-10-11 02:32:58 +00:00
|
|
|
e.v1, e.v2 = e.v2, e.v1
|
2007-01-09 09:24:20 +00:00
|
|
|
e.co1, e.co2 = e.co2, e.co1
|
2007-01-05 16:41:04 +00:00
|
|
|
e.next, e.prev = e.prev, e.next
|
2007-01-09 09:24:20 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
def removeSmallest(self, cullNum, otherLoopLen):
|
2006-07-10 09:22:07 +00:00
|
|
|
'''
|
|
|
|
Removes N Smallest edges and backs up the loop,
|
|
|
|
this is so we can loop between 2 loops as if they are the same length,
|
|
|
|
backing up and restoring incase the loop needs to be skinned with another loop of a different length.
|
|
|
|
'''
|
2005-10-11 02:32:58 +00:00
|
|
|
global CULL_METHOD
|
2006-07-29 19:32:07 +00:00
|
|
|
if CULL_METHOD == 1: # Shortest edge
|
2005-10-11 02:32:58 +00:00
|
|
|
eloopCopy = self.edges[:]
|
2006-12-14 14:53:32 +00:00
|
|
|
|
|
|
|
# Length sort, smallest first
|
|
|
|
try: eloopCopy.sort(key = lambda e1: e1.length)
|
|
|
|
except: eloopCopy.sort(lambda e1, e2: cmp(e1.length, e2.length ))
|
|
|
|
|
|
|
|
# Dont use atm
|
2006-07-30 05:48:28 +00:00
|
|
|
#eloopCopy.sort(lambda e1, e2: cmp(e1.angle*e1.length, e2.angle*e2.length)) # Length sort, smallest first
|
|
|
|
#eloopCopy.sort(lambda e1, e2: cmp(e1.angle, e2.angle)) # Length sort, smallest first
|
2007-01-09 09:24:20 +00:00
|
|
|
|
|
|
|
remNum = 0
|
|
|
|
for i, e in enumerate(eloopCopy):
|
|
|
|
if not e.fake:
|
|
|
|
e.removed = 1
|
|
|
|
self.edges.remove( e ) # Remove from own list, still in linked list.
|
|
|
|
remNum += 1
|
|
|
|
|
|
|
|
if not remNum < cullNum:
|
|
|
|
break
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
else: # CULL METHOD is even
|
|
|
|
|
|
|
|
culled = 0
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2006-07-29 19:32:07 +00:00
|
|
|
step = int(otherLoopLen / float(cullNum)) * 2
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
currentEdge = self.edges[0]
|
|
|
|
while culled < cullNum:
|
|
|
|
|
|
|
|
# Get the shortest face in the next STEP
|
2006-07-29 19:32:07 +00:00
|
|
|
step_count= 0
|
|
|
|
bestAng= 360.0
|
|
|
|
smallestEdge= None
|
|
|
|
while step_count<=step or smallestEdge==None:
|
|
|
|
step_count+=1
|
2007-01-05 16:41:04 +00:00
|
|
|
if not currentEdge.removed: # 0 or -1 will not be accepted
|
2007-01-15 23:37:34 +00:00
|
|
|
if currentEdge.angle<bestAng and not currentEdge.fake:
|
2006-07-29 19:32:07 +00:00
|
|
|
smallestEdge= currentEdge
|
|
|
|
bestAng= currentEdge.angle
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
currentEdge = currentEdge.next
|
|
|
|
|
|
|
|
# In that stepping length we have the smallest edge.remove it
|
|
|
|
smallestEdge.removed = 1
|
|
|
|
self.edges.remove(smallestEdge)
|
|
|
|
|
2006-07-29 19:32:07 +00:00
|
|
|
# Start scanning from the edge we found? - result is over fanning- no good.
|
|
|
|
#currentEdge= smallestEdge.next
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
culled+=1
|
|
|
|
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# Returns face edges.
|
|
|
|
# face must have edge data.
|
|
|
|
|
|
|
|
def getSelectedEdges(me, ob):
|
2006-07-10 09:22:07 +00:00
|
|
|
MESH_MODE= Blender.Mesh.Mode()
|
|
|
|
|
2007-01-16 02:49:58 +00:00
|
|
|
if MESH_MODE & Blender.Mesh.SelectModes.EDGE or MESH_MODE & Blender.Mesh.SelectModes.VERTEX:
|
2006-07-10 09:22:07 +00:00
|
|
|
Blender.Mesh.Mode(Blender.Mesh.SelectModes.EDGE)
|
|
|
|
edges= [ ed for ed in me.edges if ed.sel ]
|
2007-01-15 07:59:29 +00:00
|
|
|
# print len(edges), len(me.edges)
|
2006-07-10 09:22:07 +00:00
|
|
|
Blender.Mesh.Mode(MESH_MODE)
|
|
|
|
return edges
|
|
|
|
|
2007-01-16 02:49:58 +00:00
|
|
|
elif MESH_MODE & Blender.Mesh.SelectModes.FACE:
|
2006-07-10 09:22:07 +00:00
|
|
|
Blender.Mesh.Mode(Blender.Mesh.SelectModes.EDGE)
|
|
|
|
|
|
|
|
# value is [edge, face_sel_user_in]
|
2006-11-15 21:12:53 +00:00
|
|
|
'''
|
2006-07-18 10:20:43 +00:00
|
|
|
try: # Python 2.4 only
|
2006-12-25 23:14:48 +00:00
|
|
|
edge_dict= dict((ed.key, [ed, 0]) for ed in me.edges)
|
2006-07-18 10:20:43 +00:00
|
|
|
except:
|
2006-11-15 21:12:53 +00:00
|
|
|
'''
|
|
|
|
# Cant try 2.4 syntax because python 2.3 will complain still
|
2006-12-25 23:14:48 +00:00
|
|
|
edge_dict= dict([(ed.key, [ed, 0]) for ed in me.edges])
|
2006-07-10 09:22:07 +00:00
|
|
|
|
|
|
|
for f in me.faces:
|
|
|
|
if f.sel:
|
2006-12-25 23:14:48 +00:00
|
|
|
for edkey in f.edge_keys:
|
|
|
|
edge_dict[edkey][1] += 1
|
2006-07-10 09:22:07 +00:00
|
|
|
|
|
|
|
Blender.Mesh.Mode(MESH_MODE)
|
|
|
|
return [ ed_data[0] for ed_data in edge_dict.itervalues() if ed_data[1] == 1 ]
|
2005-10-11 02:32:58 +00:00
|
|
|
|
2007-01-16 02:49:58 +00:00
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
|
|
|
|
def getVertLoops(selEdges, me):
|
|
|
|
'''
|
|
|
|
return a list of vert loops, closed and open [(loop, closed)...]
|
|
|
|
'''
|
2006-07-10 09:22:07 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
mainVertLoops = []
|
2007-01-05 16:41:04 +00:00
|
|
|
# second method
|
|
|
|
tot = len(me.verts)
|
|
|
|
vert_siblings = [[] for i in xrange(tot)]
|
|
|
|
vert_used = [False] * tot
|
|
|
|
|
|
|
|
for ed in selEdges:
|
|
|
|
i1, i2 = ed.key
|
|
|
|
vert_siblings[i1].append(i2)
|
|
|
|
vert_siblings[i2].append(i1)
|
|
|
|
|
|
|
|
# find the first used vert and keep looping.
|
|
|
|
for i in xrange(tot):
|
|
|
|
if vert_siblings[i] and not vert_used[i]:
|
|
|
|
sbl = vert_siblings[i] # siblings
|
2007-01-15 07:59:29 +00:00
|
|
|
|
|
|
|
if len(sbl) > 2:
|
|
|
|
return None
|
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
vert_used[i] = True
|
|
|
|
|
|
|
|
# do an edgeloop seek
|
2007-01-15 07:59:29 +00:00
|
|
|
if len(sbl) == 2:
|
2007-01-05 16:41:04 +00:00
|
|
|
contextVertLoop= [sbl[0], i, sbl[1]] # start the vert loop
|
|
|
|
vert_used[contextVertLoop[ 0]] = True
|
|
|
|
vert_used[contextVertLoop[-1]] = True
|
|
|
|
else:
|
|
|
|
contextVertLoop= [i, sbl[0]]
|
|
|
|
vert_used[contextVertLoop[ 1]] = True
|
|
|
|
|
|
|
|
# Always seek up
|
|
|
|
ok = True
|
|
|
|
while ok:
|
|
|
|
ok = False
|
|
|
|
closed = False
|
|
|
|
sbl = vert_siblings[contextVertLoop[-1]]
|
|
|
|
if len(sbl) == 2:
|
|
|
|
next = sbl[not sbl.index( contextVertLoop[-2] )]
|
|
|
|
if vert_used[next]:
|
|
|
|
closed = True
|
|
|
|
# break
|
|
|
|
else:
|
|
|
|
contextVertLoop.append( next ) # get the vert that isnt the second last
|
|
|
|
vert_used[next] = True
|
|
|
|
ok = True
|
|
|
|
|
|
|
|
# Seek down as long as the starting vert was not at the edge.
|
|
|
|
if not closed and len(vert_siblings[i]) == 2:
|
2005-10-11 02:32:58 +00:00
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
ok = True
|
|
|
|
while ok:
|
|
|
|
ok = False
|
|
|
|
sbl = vert_siblings[contextVertLoop[0]]
|
|
|
|
if len(sbl) == 2:
|
|
|
|
next = sbl[not sbl.index( contextVertLoop[1] )]
|
|
|
|
if vert_used[next]:
|
|
|
|
closed = True
|
|
|
|
else:
|
|
|
|
contextVertLoop.insert(0, next) # get the vert that isnt the second last
|
|
|
|
vert_used[next] = True
|
|
|
|
ok = True
|
|
|
|
|
|
|
|
mainVertLoops.append((contextVertLoop, closed))
|
|
|
|
|
|
|
|
|
|
|
|
verts = me.verts
|
|
|
|
# convert from indicies to verts
|
|
|
|
# mainVertLoops = [([verts[i] for i in contextVertLoop], closed) for contextVertLoop, closed in mainVertLoops]
|
2007-01-15 07:59:29 +00:00
|
|
|
# print len(mainVertLoops)
|
2005-10-11 02:32:58 +00:00
|
|
|
return mainVertLoops
|
2007-01-05 16:41:04 +00:00
|
|
|
|
2004-08-04 06:16:46 +00:00
|
|
|
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
def skin2EdgeLoops(eloop1, eloop2, me, ob, MODE):
|
2006-07-10 09:22:07 +00:00
|
|
|
|
|
|
|
new_faces= [] #
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# Make sure e1 loops is bigger then e2
|
|
|
|
if len(eloop1.edges) != len(eloop2.edges):
|
|
|
|
if len(eloop1.edges) < len(eloop2.edges):
|
|
|
|
eloop1, eloop2 = eloop2, eloop1
|
|
|
|
|
|
|
|
eloop1.backup() # were about to cull faces
|
|
|
|
CULL_FACES = len(eloop1.edges) - len(eloop2.edges)
|
|
|
|
eloop1.removeSmallest(CULL_FACES, len(eloop1.edges))
|
|
|
|
else:
|
|
|
|
CULL_FACES = 0
|
|
|
|
# First make sure poly vert loops are in sync with eachother.
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# The vector allong which we are skinning.
|
|
|
|
skinVector = eloop1.centre - eloop2.centre
|
|
|
|
|
|
|
|
loopDist = skinVector.length
|
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
# IS THE LOOP FLIPPED, IF SO FLIP BACK. we keep it flipped, its ok,
|
2007-01-09 09:24:20 +00:00
|
|
|
if eloop1.closed or eloop2.closed:
|
|
|
|
angleBetweenLoopNormals = AngleBetweenVecs(eloop1.normal, eloop2.normal)
|
|
|
|
if angleBetweenLoopNormals > 90:
|
|
|
|
eloop2.reverse()
|
|
|
|
|
|
|
|
|
|
|
|
DIR= eloop1.centre - eloop2.centre
|
2006-07-30 05:48:28 +00:00
|
|
|
|
2007-01-09 09:24:20 +00:00
|
|
|
# if eloop2.closed:
|
|
|
|
bestEloopDist = BIG_NUM
|
|
|
|
bestOffset = 0
|
|
|
|
# Loop rotation offset to test.1
|
|
|
|
eLoopIdxs = range(len(eloop1.edges))
|
|
|
|
for offset in xrange(len(eloop1.edges)):
|
|
|
|
totEloopDist = 0 # Measure this total distance for thsi loop.
|
2006-07-29 19:32:07 +00:00
|
|
|
|
2007-01-09 09:24:20 +00:00
|
|
|
offsetIndexLs = eLoopIdxs[offset:] + eLoopIdxs[:offset] # Make offset index list
|
2005-10-11 02:32:58 +00:00
|
|
|
|
2007-01-09 09:24:20 +00:00
|
|
|
|
|
|
|
# e1Idx is always from 0uu to N, e2Idx is offset.
|
|
|
|
for e1Idx, e2Idx in enumerate(offsetIndexLs):
|
|
|
|
e1= eloop1.edges[e1Idx]
|
|
|
|
e2= eloop2.edges[e2Idx]
|
2006-07-30 05:48:28 +00:00
|
|
|
|
|
|
|
|
2007-01-09 09:24:20 +00:00
|
|
|
# Include fan connections in the measurement.
|
|
|
|
OK= True
|
|
|
|
while OK or e1.removed:
|
|
|
|
OK= False
|
|
|
|
|
|
|
|
# Measure the vloop distance ===============
|
|
|
|
diff= ((e1.cent - e2.cent).length) #/ nangle1
|
|
|
|
|
|
|
|
ed_dir= e1.cent-e2.cent
|
|
|
|
a_diff= AngleBetweenVecs(DIR, ed_dir)/18 # 0 t0 18
|
|
|
|
|
|
|
|
totEloopDist += (diff * (1+a_diff)) / (1+loopDist)
|
|
|
|
|
|
|
|
# Premeture break if where no better off
|
|
|
|
if totEloopDist > bestEloopDist:
|
|
|
|
break
|
|
|
|
|
|
|
|
e1=e1.next
|
|
|
|
|
|
|
|
if totEloopDist < bestEloopDist:
|
|
|
|
bestOffset = offset
|
|
|
|
bestEloopDist = totEloopDist
|
|
|
|
|
|
|
|
# Modify V2 LS for Best offset
|
|
|
|
eloop2.edges = eloop2.edges[bestOffset:] + eloop2.edges[:bestOffset]
|
|
|
|
|
|
|
|
else:
|
|
|
|
# Both are open loops, easier to calculate.
|
|
|
|
|
|
|
|
|
|
|
|
# Make sure the fake edges are at the start.
|
|
|
|
for i, edloop in enumerate((eloop1, eloop2)):
|
2007-01-15 23:37:34 +00:00
|
|
|
# print "LOOPO"
|
2007-01-09 09:24:20 +00:00
|
|
|
if edloop.edges[0].fake:
|
|
|
|
# alredy at the start
|
2007-01-15 23:37:34 +00:00
|
|
|
#print "A"
|
2007-01-09 09:24:20 +00:00
|
|
|
pass
|
|
|
|
elif edloop.edges[-1].fake:
|
|
|
|
# put the end at the start
|
|
|
|
edloop.edges.insert(0, edloop.edges.pop())
|
2007-01-15 23:37:34 +00:00
|
|
|
#print "B"
|
2006-07-30 05:48:28 +00:00
|
|
|
|
2007-01-09 09:24:20 +00:00
|
|
|
else:
|
|
|
|
for j, ed in enumerate(edloop.edges):
|
|
|
|
if ed.fake:
|
2007-01-15 23:37:34 +00:00
|
|
|
#print "C"
|
2007-01-09 09:24:20 +00:00
|
|
|
edloop.edges = edloop.edges = edloop.edges[j:] + edloop.edges[:j]
|
|
|
|
break
|
2007-01-15 23:37:34 +00:00
|
|
|
# print "DONE"
|
2007-01-09 09:24:20 +00:00
|
|
|
ed1, ed2 = eloop1.edges[0], eloop2.edges[0]
|
|
|
|
|
|
|
|
if not ed1.fake or not ed2.fake:
|
|
|
|
raise "Error"
|
|
|
|
|
|
|
|
# Find the join that isnt flipped (juts like detecting a bow-tie face)
|
|
|
|
a1 = (ed1.co1 - ed2.co1).length + (ed1.co2 - ed2.co2).length
|
|
|
|
a2 = (ed1.co1 - ed2.co2).length + (ed1.co2 - ed2.co1).length
|
|
|
|
|
|
|
|
if a1 > a2:
|
|
|
|
eloop2.reverse()
|
|
|
|
# make the first edge the start edge still
|
|
|
|
eloop2.edges.insert(0, eloop2.edges.pop())
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-07-10 09:22:07 +00:00
|
|
|
for loopIdx in xrange(len(eloop2.edges)):
|
2005-10-11 02:32:58 +00:00
|
|
|
e1 = eloop1.edges[loopIdx]
|
|
|
|
e2 = eloop2.edges[loopIdx]
|
|
|
|
|
|
|
|
# Remember the pairs for fan filling culled edges.
|
|
|
|
e1.match = e2; e2.match = e1
|
2007-01-05 16:41:04 +00:00
|
|
|
|
|
|
|
if not (e1.fake or e2.fake):
|
|
|
|
new_faces.append([e1.v1, e1.v2, e2.v2, e2.v1])
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
# FAN FILL MISSING FACES.
|
|
|
|
if CULL_FACES:
|
|
|
|
# Culled edges will be in eloop1.
|
|
|
|
FAN_FILLED_FACES = 0
|
|
|
|
|
|
|
|
contextEdge = eloop1.edges[0] # The larger of teh 2
|
|
|
|
while FAN_FILLED_FACES < CULL_FACES:
|
|
|
|
while contextEdge.next.removed == 0:
|
|
|
|
contextEdge = contextEdge.next
|
|
|
|
|
|
|
|
vertFanPivot = contextEdge.match.v2
|
|
|
|
|
|
|
|
while contextEdge.next.removed == 1:
|
2007-01-05 16:41:04 +00:00
|
|
|
#if not contextEdge.next.fake:
|
2006-07-10 09:22:07 +00:00
|
|
|
new_faces.append([contextEdge.next.v1, contextEdge.next.v2, vertFanPivot])
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
# Should we use another var?, this will work for now.
|
|
|
|
contextEdge.next.removed = 1
|
|
|
|
|
|
|
|
contextEdge = contextEdge.next
|
|
|
|
FAN_FILLED_FACES += 1
|
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
# may need to fan fill backwards 1 for non closed loops.
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
eloop1.restore() # Add culled back into the list.
|
2006-07-10 09:22:07 +00:00
|
|
|
|
2007-04-19 12:31:12 +00:00
|
|
|
return new_faces
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
def main():
|
|
|
|
global CULL_METHOD
|
|
|
|
|
|
|
|
is_editmode = Window.EditMode()
|
|
|
|
if is_editmode: Window.EditMode(0)
|
2007-04-18 14:40:01 +00:00
|
|
|
ob = bpy.data.scenes.active.objects.active
|
2007-01-15 07:59:29 +00:00
|
|
|
if ob == None or ob.type != 'Mesh':
|
2007-02-06 11:16:49 +00:00
|
|
|
BPyMessages.Error_NoMeshActive()
|
2005-10-11 02:32:58 +00:00
|
|
|
return
|
|
|
|
|
2006-07-10 09:22:07 +00:00
|
|
|
me = ob.getData(mesh=1)
|
2007-02-06 11:16:49 +00:00
|
|
|
|
|
|
|
if me.multires:
|
|
|
|
BPyMessages.Error_NoMeshMultiresEdit()
|
|
|
|
return
|
|
|
|
|
2007-01-05 16:41:04 +00:00
|
|
|
time1 = Blender.sys.time()
|
2005-10-11 02:32:58 +00:00
|
|
|
selEdges = getSelectedEdges(me, ob)
|
2007-01-05 16:41:04 +00:00
|
|
|
vertLoops = getVertLoops(selEdges, me) # list of lists of edges.
|
2007-01-15 07:59:29 +00:00
|
|
|
if vertLoops == None:
|
|
|
|
PupMenu('Error%t|Selection includes verts that are a part of more then 1 loop')
|
|
|
|
if is_editmode: Window.EditMode(1)
|
|
|
|
return
|
2007-01-05 16:41:04 +00:00
|
|
|
# print len(vertLoops)
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
|
|
|
|
if len(vertLoops) > 2:
|
2006-12-25 23:14:48 +00:00
|
|
|
choice = PupMenu('Loft '+str(len(vertLoops))+' edge loops%t|loop|segment')
|
2005-10-11 02:32:58 +00:00
|
|
|
if choice == -1:
|
|
|
|
if is_editmode: Window.EditMode(1)
|
|
|
|
return
|
|
|
|
elif len(vertLoops) < 2:
|
2006-12-25 23:14:48 +00:00
|
|
|
PupMenu('Error%t|No Vertloops found!')
|
2005-10-11 02:32:58 +00:00
|
|
|
if is_editmode: Window.EditMode(1)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
choice = 2
|
|
|
|
|
|
|
|
|
|
|
|
# The line below checks if any of the vert loops are differenyt in length.
|
2007-01-05 16:41:04 +00:00
|
|
|
if False in [len(v[0]) == len(vertLoops[0][0]) for v in vertLoops]:
|
2006-12-25 23:14:48 +00:00
|
|
|
CULL_METHOD = PupMenu('Small to large edge loop distrobution method%t|remove edges evenly|remove smallest edges')
|
2005-10-11 02:32:58 +00:00
|
|
|
if CULL_METHOD == -1:
|
|
|
|
if is_editmode: Window.EditMode(1)
|
|
|
|
return
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
if CULL_METHOD ==1: # RESET CULL_METHOD
|
|
|
|
CULL_METHOD = 0 # shortest
|
|
|
|
else:
|
|
|
|
CULL_METHOD = 1 # even
|
|
|
|
|
|
|
|
|
2006-12-25 23:14:48 +00:00
|
|
|
time1 = Blender.sys.time()
|
2005-10-11 02:32:58 +00:00
|
|
|
# Convert to special edge data.
|
|
|
|
edgeLoops = []
|
2007-01-05 16:41:04 +00:00
|
|
|
for vloop, closed in vertLoops:
|
|
|
|
edgeLoops.append(edgeLoop(vloop, me, closed))
|
2004-08-04 06:16:46 +00:00
|
|
|
|
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# VERT LOOP ORDERING CODE
|
2006-07-10 09:22:07 +00:00
|
|
|
# "Build a worm" list - grow from Both ends
|
2005-10-11 02:32:58 +00:00
|
|
|
edgeOrderedList = [edgeLoops.pop()]
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# Find the closest.
|
|
|
|
bestSoFar = BIG_NUM
|
|
|
|
bestIdxSoFar = None
|
|
|
|
for edLoopIdx, edLoop in enumerate(edgeLoops):
|
|
|
|
l =(edgeOrderedList[-1].centre - edLoop.centre).length
|
|
|
|
if l < bestSoFar:
|
|
|
|
bestIdxSoFar = edLoopIdx
|
|
|
|
bestSoFar = l
|
|
|
|
|
|
|
|
edgeOrderedList.append( edgeLoops.pop(bestIdxSoFar) )
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
# Now we have the 2 closest, append to either end-
|
|
|
|
# Find the closest.
|
|
|
|
while edgeLoops:
|
|
|
|
bestSoFar = BIG_NUM
|
|
|
|
bestIdxSoFar = None
|
|
|
|
first_or_last = 0 # Zero is first
|
|
|
|
for edLoopIdx, edLoop in enumerate(edgeLoops):
|
|
|
|
l1 =(edgeOrderedList[-1].centre - edLoop.centre).length
|
|
|
|
|
|
|
|
if l1 < bestSoFar:
|
|
|
|
bestIdxSoFar = edLoopIdx
|
|
|
|
bestSoFar = l1
|
|
|
|
first_or_last = 1 # last
|
|
|
|
|
|
|
|
l2 =(edgeOrderedList[0].centre - edLoop.centre).length
|
|
|
|
if l2 < bestSoFar:
|
|
|
|
bestIdxSoFar = edLoopIdx
|
|
|
|
bestSoFar = l2
|
|
|
|
first_or_last = 0 # last
|
|
|
|
|
|
|
|
if first_or_last: # add closest Last
|
|
|
|
edgeOrderedList.append( edgeLoops.pop(bestIdxSoFar) )
|
|
|
|
else: # Add closest First
|
|
|
|
edgeOrderedList.insert(0, edgeLoops.pop(bestIdxSoFar) ) # First
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2007-04-19 12:31:12 +00:00
|
|
|
faces = []
|
|
|
|
|
2006-07-10 09:22:07 +00:00
|
|
|
for i in xrange(len(edgeOrderedList)-1):
|
2007-04-19 12:31:12 +00:00
|
|
|
faces.extend( skin2EdgeLoops(edgeOrderedList[i], edgeOrderedList[i+1], me, ob, 0) )
|
2005-10-11 02:32:58 +00:00
|
|
|
if choice == 1 and len(edgeOrderedList) > 2: # Loop
|
2007-04-19 12:31:12 +00:00
|
|
|
faces.extend( skin2EdgeLoops(edgeOrderedList[0], edgeOrderedList[-1], me, ob, 0) )
|
2005-10-11 02:32:58 +00:00
|
|
|
|
2006-07-10 09:22:07 +00:00
|
|
|
# REMOVE SELECTED FACES.
|
2007-04-19 12:31:12 +00:00
|
|
|
MESH_MODE= Blender.Mesh.Mode()
|
|
|
|
if MESH_MODE & Blender.Mesh.SelectModes.EDGE or MESH_MODE & Blender.Mesh.SelectModes.VERTEX: pass
|
|
|
|
elif MESH_MODE & Blender.Mesh.SelectModes.FACE:
|
|
|
|
try: me.faces.delete(1, [ f for f in me.faces if f.sel ])
|
|
|
|
except: pass
|
2006-07-18 10:20:43 +00:00
|
|
|
|
2007-11-21 11:53:30 +00:00
|
|
|
me.faces.extend(faces, smooth = True)
|
2006-07-10 09:22:07 +00:00
|
|
|
|
2006-12-25 23:14:48 +00:00
|
|
|
print '\nSkin done in %.4f sec.' % (Blender.sys.time()-time1)
|
|
|
|
|
2007-04-19 12:31:12 +00:00
|
|
|
|
2005-10-11 02:32:58 +00:00
|
|
|
if is_editmode: Window.EditMode(1)
|
2004-08-04 06:16:46 +00:00
|
|
|
|
2006-01-29 19:17:53 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|