|
Author |
Topic: Rect is not getting it's stroke color set (Read 394 times) |
|
fry
|
Rect is not getting it's stroke color set
« on: Jan 8th, 2004, 6:19pm » |
|
a known bug, just logging it here so it becomes part of the bug fixing proces... void setup() { size(400, 400); //fill(255, 153); // This line fixes the issue } void loop() { //translate(0, 0, 0); //This line makes lines disappear background(0); strokeWeight(10.0); stroke(0, 102, 153, 153); line(0, 0, mouseX, mouseY); line(width, height, width-mouseX, height-mouseX); rect(mouseX, mouseY, 200, 200); }
|
|
|
|
|