Notifications
Clear all

[Closed] How to realize it in max ?

Hi ,everyone.
The modo 401 release the background deform tools looks very cool and useful.

you can see the video here

Is there any way to realize this in max ?

2 Replies

i think one way to do it in maxscript and getting a similar result is scripting a simpleObject plugin that takes a selected mesh to build the object and the deforming object as parameter. the plugin will have to use intersect rays operation for each vertex to detect wether or not the meshes are intersecting. and then moving the vertices to the point of intersection.
i don’t think that a scripted modifier will be a nice idea, since the intersect calculation have to be done in a world space coordinate system, and as far as i know maxscript doesn’t support World space modifier(WSM) creation.

Thanks,I think the same way too,but don’t know much about intersect rays