Geyser update (WIP)

This commit is contained in:
paulevsGitch 2020-11-30 18:47:13 +03:00
parent c4b60cab54
commit aac9844252
2 changed files with 60 additions and 19 deletions

View file

@ -0,0 +1,8 @@
package ru.betterend.util.sdf.operator;
public class SDFInvert extends SDFUnary {
@Override
public float getDistance(float x, float y, float z) {
return -this.source.getDistance(x, y, z);
}
}