I make a box. How do I turn the wireframe/edges into tubes. That is to say give the wireframe dimension. Like a shell modifier for edges.
thanks
Forum topic · General Scripting
By othoap · 2013-08-10
I make a box. How do I turn the wireframe/edges into tubes. That is to say give the wireframe dimension. Like a shell modifier for edges.
thanks
Michaellee · 2020-02-27
An improvement in the language is supportive of the citizens. The stance of the true sense and languagetools is implied for the terms. The skills are visited for future times. Norm is fit for the parts. The agent is found here for the support of the norms for all skilled and able men in the area.
barigazy · 2013-08-10
Best wey to do this is to use Lattice modifier but but mxs expose limited number of properties. Another way can be this method
delete objects
boxy = Box lengthsegs:3 widthsegs:3 heightsegs:3 length:60 width:60 height:60
cage = converttopoly (copy boxy)
max create mode
polyop.createShape cage #{1..polyop.getNumEdges cage} smooth:off name:(boxy.name+"_Cage")
cage = (delete cage ; getnodebyname (boxy.name+"_Cage"))
cage.render_displayRenderMesh = on ; cage.thickness = 2
othoap · 2013-08-11
barigazy,
DOh, Thanks MAN that's it exactly what I needed.