Circular Hole

edited May 2015 in Old versions
Hello,

I want to make a circular hole on the bottom face of a box. Does anyone know how to create this?

Thank you!

Comments

  • You have to create sphere or cylinder using mkvoid
  • edited May 2015
    This is the code I am using to make the hole. All I am doing is making a box, hiding the top and bottom faces. Then I draw a beach at the bottom of the box. It still does not work.

    Thanks for the tips!


    setshapemode>dp | bound
    setdrawmode mode="full" />
    setmkfluid mk="0" />
    drawbox>
    boxfill>solid
    point x="0" y="0" z="1.6" />
    size x="0.3" y="0.3" z="0.3" />
    /drawbox>
    setmkbound mk="0" />
    drawbox>
    boxfill>left | right | back | front
    point x="0" y="0" z="1.6" />
    size x="0.3" y="0.3" z="0.3" />
    /drawbox>
    shapeout file="Box"/>
    setdrawmode mode="face" />
    setmkbound mk="1" />
    drawbeach mask="128">
    point x="0" y="0.3" z="1.6" />
    point x="0" y="0.3" z="1.59" />
    point x="0.3" y="0.3" z="1.59" />
    point x="0.3" y="0.3" z="1.6" />
    /drawbeach>
    setmkvoid />
    setdrawmode mode="solid"/>
    drawcylinder radius="0.005" mask="1|2">
    point x="0.15" y="0.15" z="1.5" />
    point x="0.15" y="0.15" z="1.7" />
    /drawcylinder>
    shapeout file="Cylinder"/>
Sign In or Register to comment.