//Machine Setup N10 G21 //Set units to mm N20 G90 //Set Absolute Positioning N30 G18 //ZX Plane N40 M104 S225 //Set the extruder temperature to 225 C N50 M108 R5.0 //Set extruder speed N60 M103 //Extruder is turned OFF //Homing Position //NOTE Origin of part is in the bottom left corener of Front View N70 G00 x0 y0 z300 //Moves Tooling off the build plate vertically N80 G00 x-30 y-30 z300 //Moves Tooling away from print N90 M105 //Get Extruder Temperature (Heat up to 225C) N100 G00 x0 y0 z300 N110 G00 x0 y0 z.1 N115 G00 x65 y0 z.1 //Z axis is slighlty off the build plate to //accommodate for the material that is printed //Set in 65mm in to account for radius of arc //Part 3 Bracket Print N120 G01 x65 y0 z.1 //Set 65mm in to account for radius of arc N130 G01 x365 y0 z.1 N140 G02 x365 y0 z135.1 K67 //K Sets Center Point of Arc on Z Axis N150 G01 x220 y0 z135.1 N155 G00 x65 y0 z135.1 //Rapid Traverse to Next Point N160 G02 x65 y0 z.1 K-67 //K Sets Center Point of Arc on Z Axis N170 G01 x65 y200 z.1 N180 G01 x365 y200 z.1 N190 G01 x365 y0 z.1 N200 G01 x365 y200 z.1 // Trace Line N210 G02 x365 y200 z135.1 K67 //K Sets Center Point of Arc N220 G01 x365 y0 z135.1 N230 G01 x365 y200 z135.1 //Trace Line N240 G01 x220 y200 z135.1 N245 G00 x65 y 200 z135.1 //Rapid Traverse to Next Point N250 G00 x65 y0 z135.1 N260 G01 x65 y100 z135.1 //Trace Line N270 G02 x65 y100 z.1 K-67 N280 G01 x65 y200 z.1 //Trace Line N290 G01 x65 y200 z135.1 N300 G01 x65 y200 z200.1 N310 G01 x65 y0 z200.1 N320 G01 x65 y0 z135.1 N330 G01 x65 y0 z200.1 //Trace Line N340 G01 x150 y0 z200.1 N350 G01 x220 y0 z135.1 // Angle Edge N360 G01 x220 y200 z135.1 N370 G01 x150 y200 z200.1 N380 G01 x65 y200 z200.1 N390 G01 x150 y200 z200.1 //Trace Line N390 G01 x150 y0 z200.1 //Return to Home N400 G00 x150 y0 z300 //Moves the tool to the above of part N410 G00 x-30 y-30 z300 //Return to Home Position //Program Shutdown N420 G104 P100 //Pause 1000 seconds N430 M103 T0//Extruder Off N440 M18 //Motors Off N450 M104 S0 //Set Extruder Head Temperature to 0 C N460 M02 //End of Program