Le 30.09.2009 18:53, [email protected] a écrit : > Hi, newbie EMC/G-code question: > > I would like to make a slot with parallel sides, say a 10mm cutter > making an 11mm slot: > > G1 X10 Y0 > G1 X10 Y1 > G1 X0 Y1 >
Hi, assuming you start from X0 Y0, and you don't care about ends, I propose you to try half circle at both end, this is the easiest way for the machine (lowest acceleration). Try somethings like this: g1 x0 y0 (go to start... maybe not needed) g1 x10 g2 y1 j0.5 g1 x0 g2 y0 j-0.5 (maybe not needed ...) to speed up things a bit, you can use the G64 statement (G64 P0.05 for exemple), it will allow some error on the junction from line to arc, helping keeping good speed. Claude ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
