We love MakerBot and have a cupcake cnc, and it’s been great to see how much the machines have developed towards making really nice 3d prints, which are looking especially great with the new mk6 stepstruders. However, one of the things we love about makerbots in contrast to commercial printers is that you have complete control over every aspect of the print technique. We think there is a lot of opportunity to develop new printing styles with makerbots, beyond traditional solid prints.
We are doing some experimentation with the materiality of makerbot prints by working directly in gcode with processing. We have made a small library of functions for printing a gcode file, which provides some simple functions for generating gcode commands.
For example, here is some code for a 30mm thin-walled cube:
CodeThread codeThread= new CodeThread();
int feed = 1200;
codeThread.setDefaults();
codeThread.extruderOnFwd();
codeThread.generateRaft(40, 40, 560, 1500, 2.5, 1.5);
for(float i=0; i<30; i+=0.35) {
codeThread.moveTo(15, 15, 1.27+i, feed);
codeThread.moveTo(-15, 15, 1.27+i, feed);
codeThread.moveTo(-15, -15, 1.27+i, feed);
codeThread.moveTo(15, -15, 1.27+i, feed);
}
codeThread.extruderOff();
codeThread.writeToFile(sketchPath + "30mmbox.gcode");









[...] 외에도 유용한 자료가 가득 http://blog.diatom.cc/codethread/codethread-making-gcode-for-makerbot-with-processing If you enjoyed this article, please consider sharing it! [...]
RSS feed for comments on this post. / TrackBack URI