Gogf
Indescribable
Originally posted by vbraun
Try this:
Code:#declare insidet = difference{ box { <0, 0, 0> // one corner position <X1 Y1 Z1> < 10, 2, 2> // other corner position <X2 Y2 Z2> } // Capped Cylinder, closed [or open ended] // cylinder { <END1>, <END2>, RADIUS [open] } // END1 = coord of one end of cylinder // END2 = coord of other end // RADIUS = size of cylinder // open = if present, cylinder is hollow, else capped cylinder { <1,1,-0.1>, <1,1,2.1>, .9 // open }cylinder { <9,1,-0.1>, <9,1,2.1>, .9 // open }box {<1,.05,-1> <9,1.95, 3>} } #declare outsidet = union{cylinder { <1,1,-0.1>, <1,1,2.1>, 1 // open }cylinder { <9,1,-0.1>, <9,1,2.1>, 1 // open }box {<1,0,-1> <9,2, 3>} } #declare tread = intersection{ object {outsidet} object{insidet} }
What is it? It seems like some sort of box cylander mix. Is it your tank?
@the mormegil: I can't see your image.