FAQ
Cover
\
Build
\
Source
\
Bugs
\
Reference
\
Libraries
\
Tools
The bugs database has moved
here
.
Bug 319 : strokeWeight() doesn't work on JAVA2D normal mode
Last modified: 2006-04-12 05:47
P
roject:
processing
trash
Version:
unspecified
Co
m
ponent:
android
book
core
libraries
pde
reference
tools
web
Status:
RESOLVED
Resolution:
INVALID -
Pr
i
ority:
P2
Severity:
normal
Platform
All
O
S:
All
Windows
Mac OS
Linux
Other
Reporter:
Ricard
Assigned To:
fry
Attachment
Type
Created
Size
Actions
Description
: Opened: 2006-04-11 04:36
Using Processing-0111
strokeWeight() doesn't work on JAVA2D on normal mode, but it does work on
present mode.
void setup(){
size(200,200);
background(255);
stroke(0);
noFill();
strokeWeight(5);
}
void draw(){
}
void mouseDragged(){
line(pmouseX,pmouseY,mouseX,mouseY);
}
Additional Comment
#1 From fry 2006-04-12 05:47
i'm guessing you have something wrong with your graphics card or its
drivers. this works fine for me and i assume most everyone else because
this would be a major bug and we'd be hearing about it a lot more if
strokeWeight() were just plain broken.