im trying to loft between a set of adjoined edges on one poly surface to a set of adjoined edges on another poly surface. But is there a way to do this with one loft command?
so far im doing the edges indiviually like below. But surely there is a more efficient way. Or perhaps there is an alternative to lofting. All i need is to bridge the gap between two surface edges (with some divisions in between).
here is an example of what im doing:
##############################################
cmds.nurbsToPolygonsPref(pt=1, f=2, un=1, vn=1, ut=3, vt=3)
cmds.loft('flankSurface.e[17]','innerBreastSurface.e[0]',po=1, ss=2, ch=False)
cmds.loft('flankSurface.e[19]','centralTopStripCenterSurface.e[0]',po=1, ss=2, ch=False)
cmds.loft('flankSurface.e[23]','centralTopStripCenterSurface.e[12]',po=1, ss=3, ch=False)
cmds.loft('flankSurface.e[25]','centralTopStripCenterSurface.e[9]',po=1, ss=3, ch=False)
##############################################
and on and on....
any advice would be great, thanks guys!