This commit is contained in:
cyberpwn
2021-09-11 13:18:58 -04:00
parent 3864708cf1
commit 7d0555fb67
19 changed files with 65 additions and 103 deletions

View File

@@ -754,7 +754,7 @@ public interface Hunk<T> {
for (int i = 0; i < getWidth(); i++) {
for (int j = 0; j < getHeight(); j++) {
for (int k = 0; k < getDepth(); k++) {
set(i,j,k,c.apply(i, j, k, get(i, j, k)));
set(i, j, k, c.apply(i, j, k, get(i, j, k)));
}
}
}