Message 1 of 12
MaxScript Editable Poly - Collapse vertices
Not applicable
05-08-2013
11:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Good morning everybody.
I am starting with MaxScript, but I already know develop codes (I come from c#)
I want to create a script which collapse all vertices which has the same position or their distance is close then a value. I thought this logic:
How can I do this? Thanks Good Bye.
I am starting with MaxScript, but I already know develop codes (I come from c#)
I want to create a script which collapse all vertices which has the same position or their distance is close then a value. I thought this logic:
SelectedMesh = $
ConvertTo SelectedMesh Editable_Poly
for (v in "Vertices of this editable poly") do
for (v1 in "Other vertices of this poly but not this") do
// if (v.position = v1.position) Collapse These two
How can I do this? Thanks Good Bye.
