Notifications
Clear all

[Closed] Get faces which share the same vertex

well the name says it all. is there a funciton in maxscript that will retun the face indexes of all faces that share a specified vertex (preferably an function that works on editable_mesh)?

i haven’t found anything in max script reference…

2 Replies

meshop.getFacesUsingVert <Mesh mesh> <vertlist>

Returns a bitarray of size=(#faces in mesh) with bits set for all faces that use the specified vertices.

In: Meshop Face Methods

Returns a bitarray, so you will need to cast to an array.

The mesh/poly areas of help can be a bit confusing to navigate, I know

hey thx a lot man