euglena/src/oldfiles/window.java
2016-07-10 18:33:27 -07:00

16 lines
527 B
Java

void window(int xsize, int ysize) {
//Outer rectangle is filled
fill(color(0, 0, 255));
noStroke();
rectMode(CENTER);
rect(convertXCoord(screenWidth - 1000), convertYCoord(centerY), screenWidth-500, screenHeight);
//Inner rectangle with no stimulus
fill(0,0,0);
strokeWeight(1);
stroke(color(0, 0, 0));
rectMode(CENTER);
rect(convertXCoord(screenWidth - 1000), convertYCoord(centerY), xsize, ysize);
}