Project

General

Profile

« Previous | Next » 

Revision fceaa116

Added by Leszek Koltunski 11 months ago

Progress with MeshMultigon. Still auto-computation of 'up' edges does not work.

View differences:

src/main/java/org/distorted/library/mesh/MeshMultigon.java
90 90
      {
91 91
      int len = vertices[i].length/2;
92 92
      up[i] = new boolean[len];
93
      for(int j=0; j<len; j++) up[i][j] = isUp(v,i,j);
93
      for(int j=0; j<len; j++)
94
        {
95
        up[i][j] = isUp(v,i,j);
96

  
97
        android.util.Log.e("D", "polygon "+i+" edge "+j+" up: "+up[i][j]);
98
        }
94 99
      }
95 100

  
96 101
    return up;

Also available in: Unified diff