So I was trying to see if I can distort some geometry using some sort of equation using max script. Spherical projections would work for nearly every type of geometry so I tried using Stereographic Projection. And emulated the equation in max script. rollout projectRollout "Project"( button projectbtn "Project" on…
Hi, I don't know exactly what's the purpose of this script, anyway I spotted a couple of issues x = vert.x/1 - vertz y = vert.y/1 - vertzshould be x = vert.x/1 - vert.z y = vert.y/1 - vert.z You may want to add a "with redraw off" context to speed things up and "with undo on" to reduce program granularity.