3D on HTC Wildfire Failure
in
Android Processing
•
3 years ago
I'm trying out simple 3D on the HTC Wildfire with less than great results. It runs Android 2.1 and 2D stuff seems to work fine.
However, even the simple code below, results in 2 or 3 sides of solid white with 2 or 1 side of dots...... is this a common issue, or just a HTC Wildfire thing?
- void setup() {
- size(screenWidth, screenHeight,A3D);
- smooth();
- noStroke();
- }
- void draw() {
- background(0);
- lights();
- translate(width/2, height/2,-200);
- rotateY(frameCount*PI/200);
- box(200);
- }
1