PEasyCam error
in
Contributed Library Questions
•
11 months ago
Hi guys,
I'm trying to start learning about 3D in processing. When initializing a Peasy camera with this simple script:
No framebuffer objects available
Does anybody know what is it? Thank you!
I'm trying to start learning about 3D in processing. When initializing a Peasy camera with this simple script:
- import peasy.test.*;
- import peasy.org.apache.commons.math.*;
- import peasy.*;
- import peasy.org.apache.commons.math.geometry.*;
- PeasyCam jCam;
- void setup(){
- size(600,600,P3D);
- jCam = new PeasyCam(this, 100);
- }
- void draw(){
- background(0);
- stroke(255);
- noFill();
- box(600);
- }
No framebuffer objects available
Does anybody know what is it? Thank you!
1