We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello, anybody know a way to remove the border under P3D ? because that's work fine in classic Mode but with P2D and P3D it's a way to crash the sketch
void setup(){
removeBorder(true) ;
size(300,300, P3D) ;
}
void removeBorder(boolean deco) {
frame.removeNotify();
frame.setUndecorated(deco);
frame.addNotify();
}
Answers
I've found this example lying around: =:)
Thx Mister GoToLoop work perfectly