//Copyright © 2018 by Abbott Analytical Products. All Rights Reserved. 

/* Plan
1> Create 2D ellipse shape
2> Export as SVG to pyCAM
3> Use pyCAM engrave text feature
NOTE 1: If SVG corrupt try importing Blender or InScape then export agin as SVG.
NOTE 2: Target dimmensions in pyCAM 3 inch by 1 inch by .25 inch.
NOTE 3: Jockey the SVG to pyCAM origin at bottom-left of bounding box for ellipse.
*/

module rnd2it()
{


echo(version=version());

font = "Liberation Sans";


hole_dia = 8;
coin_dia = 75;
o = coin_dia ;// 2; 
    

//module cutout1()
{
    color("gray") 
    {
           resize([coin_dia*2.2,coin_dia]*1.2)
           circle(d=coin_dia);
       }
 }




} // end of rnd2it

rnd2it();