FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Bugs
   Software Bugs
(Moderator: fry)
   Rect is not getting it's stroke color set
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: Rect is not getting it's stroke color set  (Read 394 times)
fry


WWW
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);
}
 
Pages: 1 

« Previous topic | Next topic »