Old P3D renderer for Processing 2
in
Library and Tool Development
•
1 year ago
Hi,
Sat down a couple of hours yesterday and created a library with the old PGraphics3D.java which hopefully enables people with no OPENGL graphic card to still use Processing 2.
I can't test it myself since I have an OPENGL graphic card but please go ahead and try it out and I'll try and fix the issues that arrise.
It can be downloaded here.
http://ixagon.se/oldp3d
Example included but posting here as well.
- import ixagon.renderer.*;
- void setup() {
- size(400, 400, OldP3D.NOSTALGIA);
- }
- void draw() {
- background(0);
- fill(255);
- rect(100, 100, 200, 200);
- }
1