FAQ
Cover
\
Build
\
Source
\
Bugs
\
Reference
\
Libraries
\
Tools
The bugs database has moved
here
.
Bug 410 : curveVertex doesn't work on OpenGL nor P3D
Last modified: 2006-10-10 18:29
P
roject:
processing
trash
Version:
unspecified
Co
m
ponent:
android
book
core
libraries
pde
reference
tools
web
Status:
RESOLVED
Resolution:
DUPLICATE of bug
390
Pr
i
ority:
P2
Severity:
normal
Platform
All
O
S:
All
Windows
Mac OS
Linux
Other
Reporter:
fjoselevich
Assigned To:
fry
Attachment
Type
Created
Size
Actions
Description
: Opened: 2006-10-10 05:02
curveVertex(x,y) is not showing anything on the screen with
size(w,h,OPENGL) nor with size(w,h,P3D). It works with vertex(x,y).
I'm testing on a nVidia GeForce go 7700, on WinXP.
[code]
import processing.opengl.*;
void setup() {
size(300,300,OPENGL);
}
void draw() {
background(128);
pushMatrix();
beginShape();
stroke(255);
for (int i = 0; i < 300; i++) {
curveVertex(random(0,i), random(0,i));
}
endShape();
popMatrix();
}
[/code]
Additional Comment
#1 From fry 2006-10-10 18:29
*** This bug has been marked as a duplicate of
390
***