xxxxxxxxxx
74
function preload()
{
recordCanvas(100, 100, true);
}
function setup() {
createCanvas(400, 400);
//recordCanvas(100, 100, true);
noLoop();
}
function draw() {
beginRecord(); // start recording canvas calls
background(220);
noFill();
//line(0, 200, 200, 200);
ellipse(200, 200, 100, 100);
//rect(100, 100, 100, 100);
//rect(200, 200, 100, 100);
// -> fillText !?
//textSize(20);
//text("A", width/2, height/2);
beginShape();
//vertex(0, 200);
//vertex(400, 200);
//-> lineTo
curveVertex(0, 200);
curveVertex(0, 200);
curveVertex(200, 300);
curveVertex(400, 200);
curveVertex(400, 200);
endShape();
endRecord(); // stop recording canvas calls and print array
// debug visualization of the resulting gcode
let ggcode = gcode.split("\n");
print(ggcode.length);
for (i=0; i<ggcode.length; i++)
{
ll = ggcode[i];
if (ll.indexOf("G01") > -1)
{
coords = ll.split(" ");
xxx = float(coords[1].replace("X", ""));
yyy = float(coords[2].replace("Y", ""));
stroke(255, 0, 0)
ellipse(xxx, yyy, 5, 5);
}
}
sendGCODE(gcode, "/dev/tty.usbserial-14210");
}
function keyPressed()
{
if (key == 'x')
{
serial.stop();
print("close?");
}
}