Please visit my new address: https://coxxect.blogspot.com/
void setup() { // setup() runs once size(400, 300); background(255); } void draw() { pushMatrix(); translate(200, 50); ellipse(50, 50, 100, 100); popMatrix(); ellipse(50, 50, 100, 100); }
I may need to load a library but I can't get your code to runvoid setup() { // setup() runs once size(400, 300); background(255);}void draw() { pushMatrix(); translate(200, 50); ellipse(50, 50, 100, 100); popMatrix(); ellipse(50, 50, 100, 100);Rick
I may need to load a library but I can't get your code to run
ReplyDeletevoid setup() { // setup() runs once
size(400, 300);
background(255);
}
void draw() {
pushMatrix();
translate(200, 50);
ellipse(50, 50, 100, 100);
popMatrix();
ellipse(50, 50, 100, 100);
Rick