You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
540 B
Java

8 years ago
void squareCorridor() {
noFill();
strokeWeight(12); // Controls thickness of blue border
stroke(color(0, 0, 31));
rectMode(CENTER);
rect(convertXCoord(screenWidth - 1000), convertYCoord(550), xsize/calibrator.magx *15, ysize/calibrator.magy *15);
fill(color(0, 0, 255));
noStroke();
rectMode(CENTER);
rect(convertXCoord(screenWidth - 1000), convertYCoord(550), xsize/calibrator.magx *9, ysize/calibrator.magy *9);
}