Lines Matching refs:dx
142 for (int dx = -4; dx <= 4; dx++) {143 int dist = Math.max(Math.abs(dx), Math.abs(dy)); // Chebyshev/infinity norm144 int xx = x + dx, yy = y + dy;156 for (int dx = -2; dx <= 2; dx++)157 darkenFunctionModule(x + dx, y + dy, Math.abs(Math.max(Math.abs(dx), Math.abs(dy)) - 1));