OPENGL applet problem??
in
Integration and Hardware
•
2 years ago
Is it a known bug.?.. I created a sketch that run fine in the PDE but as soon as I export it as an applet... google chrome won't even load anything but IE & Firefox give me the Error : class not found : sketchname.
I've found posts that date back to october 2010 with no solid answer.. Any news about this?
this won't work..
- import processing.opengl.*;
- void setup(){
- size(500,500,OPENGL);
- rectMode(CENTER);
- }
- void draw(){
- rect(250,250,300,300);
- }
yet this will work
- void setup(){
- size(500,500);
- rectMode(CENTER);
- }
- void draw(){
- rect(250,250,300,300);
- }
4