
How to draw on top of something in P3D?
```java
void setup() {
size(600, 600, P3D);
}
void draw() {
background(0);
ortho();
hint(DISABLE_DEPTH_TEST);
hint(DISABLE_DEPTH_MASK);
stroke(30);
fill(255, 0, 0);
rect(10, 10, 100, 100);
fill(0, 255, 0);
rect(0, 0, 400, 400);
}
```
How can I draw the second rectangle on top of the first one?
Right now the stroke of the first is coming threw the second rectangle.
Using P2D is not a option, neither is using translate.