Loading...
Logo
Processing Forum
3.14a's Profile
1 Posts
1 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    Rendering several overlapping shapes on a plane in 3D seems to be quite tricky using P3D/OpenGL (in Processing 2.0). Without the right hints there is either "z-fighting" of the different shapes visible (causing headaches) and the strokes of all shapes are visible (including the covered ones).



    I searched quite a while for a solution, eventually with the wrong key words, but in the end I found a solution that may is of use to some of the readers.

    So if you draw several shapes on the same plane add the two following hints:
    1. hint(DISABLE_DEPTH_TEST); // avoids z-fighting
    2. hint(ENABLE_ACCURATE_2D); // strokes are drawn correctly
    A small example

    1. void setup() {
    2.   size(200, 200, OPENGL);
    3. }

    4. void draw() {
    5.   background(255);
    6.   smooth();
    7.   hint(DISABLE_DEPTH_TEST); // avoids z-fighting
    8.   hint(ENABLE_ACCURATE_2D); // strokes are drawn correctly
    9.   // some motion
    10.   translate(width/2, height/2, -200);
    11.   rotateY(frameCount * 0.01);
    12.   rotateX(frameCount * 0.01);
    13.   stroke(150);
    14.   strokeWeight(6); // increase the thickness
    15.   fill(220, 0, 0);
    16.   rect(-50, -50, 200, 200); 
    17.   fill(220, 220, 0);
    18.   rect(-100, -100, 200, 200); 
    19. }