Notifications
Clear all

[Closed] Add Edge Loop x Times in Edge Ring Selection

I’m trying to figure out how to add multiple edge loops evenly in a selected edge.

so far I have this but it doesn’t work properly.


selObj = selection[1]
if selObj != undefined do
(
	for hhh = 1 to 4 do
	(
		selObj.SelectEdgeRing ()
		z = selObj.GetSelection #Edge
		NewVertBitField = #{}
		EdgeBitField = polyOp.getEdgeSelection selObj
		FaceBitField = polyOp.getFacesUsingEdge selObj EdgeBitField
		for EdgeIndex in EdgeBitField do
		(
			NewVertBitField += #{polyOp.divideEdge selObj EdgeIndex 0.5}
		)
		for FaceIndex in FaceBitField do
		(
			FaceVerts = polyOp.getVertsUsingFace selObj #{FaceIndex}
			ConnectVerts = #()
			for VertIndex in FaceVerts do
			(
				if NewVertBitField[VertIndex] do
				(
					append ConnectVerts VertIndex
				)
			)
			if ConnectVerts.count == 2 do
			(
				polyOp.createEdge selObj ConnectVerts[1] ConnectVerts[2]
			)
		)
		selObj.SetSelection #Edge z
	)
)

it creates alot more than 4 edges, 15 to be exact. I’m sure theres a cleaner way to do this I just dont know how. please anyone?

4 Replies

Go here: James Haywood maxscripts and find “Custom connect” script. This site is very useful for maxscript beginners, so you can learn a lot from it.

mmm… that seems to only connect selected vertices

Connects either verts or edges depending on which mode you’re in. When in edge mode, use it repeatedly within a second from the last usage to increase the number of segments. So when you run it the first time you get one connecting edge, run it again within a second and you get two, and so on.

Ah ok thanks!