Beispiel #1
0
 /**
  *      Gives a coloring of the grid such that
  *      if a point p has color k, then all points
  *      p + m[ux, 0 | 0] + n[vx, vy | 0] have the same color
  *      for any integers a and b.
  *
  *      @since 1.7
  */
 public int GetColor(int ux, int vx, int vy)
 {
     return(BasePoint.GetColor(ux, vx, vy) * SpliceCount + I);
 }