3D point not working on Android
in
Android Processing
•
2 years ago
I'm trying to display points on Android, and I can't get them to display. The following sketch works on standard Processing, but doesn't work on Android:
void setup() {
//size(480, 800, P3D);
}
void draw() {
background(0);
stroke(0, 0, 255, 255);
point(85, 75, 0);
point(30, 75, 0);
}
int sketchWidth() { return 480; }
int sketchHeight() { return 800; }
String sketchRenderer() { return A3D; }
I've tried a range of Z values, thinking that it could be clipping, but to no avail. A line connecting the two points displays with no problem.
Any ideas why this will not work?
1