Notifications
Clear all

[Closed] Select Faces by Vertex Count

Is it possible to select faces by vertex count? How?

2 Replies

this will return all quads

faces = for f in $.faces where (polyop.getFaceDeg $ f.index) == 4 collect f.index

Thanks, thats exactly what I was looking for!!