Polyboost has a function where you can select a face (make yourself a floating tri) and then tell it to give you all the faces with the same amount of edges (3). That's what I do.
Or you could use Monster's "Who's my quad" script, then just invert to find all your non quads. www.juantwo.com
fn umple_colectii sel =
(
col_nu = #{}
for i = 1 to (polyOp.getNumFaces sel) do
(
x = (polyOp.getVertsUsingFace sel i).numberset
if (x != 4) do
(
append col_nu i
)
)
)
if selection.Count != 0 then
(
sv = selection[1]
if((classof sv.baseobject) == Editable_Poly) do
(
umple_colectii (sv.baseobject)
polyop.setFaceSelection (sv.baseobject) col_nu
print col_nu.numberset
)
)
else
(
print "No tris"
)
)
Replies
Or you could use Monster's "Who's my quad" script, then just invert to find all your non quads. www.juantwo.com
http://jhaywood.com/maxScripts.htm
John
I'll give them all a try today.
category:"DragAndDrop"
toolTip:""
(
col_nu = #{}
fn umple_colectii sel =
(
col_nu = #{}
for i = 1 to (polyOp.getNumFaces sel) do
(
x = (polyOp.getVertsUsingFace sel i).numberset
if (x != 4) do
(
append col_nu i
)
)
)
if selection.Count != 0 then
(
sv = selection[1]
if((classof sv.baseobject) == Editable_Poly) do
(
umple_colectii (sv.baseobject)
polyop.setFaceSelection (sv.baseobject) col_nu
print col_nu.numberset
)
)
else
(
print "No tris"
)
)
posted just some threads away.