No worries. I used to ask a lot in the beginning, as I do now. You is always something to learn. Try this… surfaceToAttach = Plane width:140 length:…
I see. Align to surface is a boolean, so you can just add in my code snippet something like ctrl.align = true or false. 2.3. If you mean to set the p…
You change parameters in the script using all the available methods that MAXScript provides. Check the Help File of Maxscript and write in the search …
This will get you going: surfaceToAttach = Plane width:140 length:150 lengthsegs:14 widthsegs:14 wirecolor:[140, 140, 90] noiseMod = Noisemodifier() …
like this ?
Just saying $Box001.material = green will produce error because you are telling max to assign a material called “green” to a node. Maybe you mean so…
Ok, so there is indeed a question in the Geometric Computing thread about finding the intersection of a 3d spline and a plane. Didn’t see it before. I…
I figured out this method but its not working properly. The getLinePlaneIntersect function returns a bunch of collinear points. If someone has time ju…
Oh you right ! Thats the trick. I didnt write the extension when I saved the file (and as you pointed, I couldn’t see the file – but the file was ther…
So, you want both sphere&cylinder to move to a <NewSphere>’s position. Maybe doing the following ? s.parent = c c.pos = <NewSphere>…
I think that your question is not very clear Andreseloy ! Or at least I cannot figure out what you want to achieve !
If you mean that with #corner #line you cant get a curvy rectangle, that is true. Because you explicitly declared your intentions. But you can use #co…
Right, I got it. Thanks for the reference! By building the kd tree we will be able to eliminate a large amount of the search space – and hence the com…