Beispiel #1
0
 public MapMesh getcut(Coord cc) {
   Cut cut = geticut(cc);
   if (cut.dmesh != null) {
     if (cut.dmesh.done() || (cut.mesh == null)) {
       cut.mesh = cut.dmesh.get();
       cut.dmesh = null;
     }
   }
   return (cut.mesh);
 }