I was looking at scripting this a while back, to script a make poly tool that works like modo's. Sadly, it doesn't seem possible (or at least possible in any efficient way) to get the order of selection in Max.
Is there a max polyop macroscript for the action of subobj level selecting x verts and creating a face in the order the selection array is in? As in: Select verts: 1, 2, 3, 4 Create face from v1 > v2 > v3 > v4 > v1 I'm going crazy here with the create face tool. I'd love a script I could bind to my quad. Thanks.
For what I'm working with now I got it working using lathe instead, I'm doing some blending of pretty complex shapes. I converted a bunch of cross-section splines to editable poly objects so I could build a surface out of selected verts. The plan was to only use the ones I wanted (optimization) and delete all the floating…
Sorry I wish I could help you, but I've never had to do what you seem to be doing. Out of curiosity how did you end up with all those floating verts without any pre existing edges or polys? If you've got edges it might be easier to use the bridge tool, or if you can select whole edge borders there's cap.
you can use a timer (used in rollouts) to run a function every x'th second. E.g 0.5 would result into 500 miliseconds. Within that called function you could then store and capture the selected verts of your object, lets say with a memory of just 5 vertex positions. Each time the vertex selection changes you save just the…
Yeah I gave it a shot before posting, I wasn't able to figure out how to deal with the array I was getting containing vertex numbers, the order never seemed correct. I posted over at CGTalk too, maybe one of those guru's will have an idea.