Geysers prototype

This commit is contained in:
paulevsGitch 2020-11-30 01:50:40 +03:00
parent 3ea02c3f45
commit c4b60cab54
4 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package ru.betterend.util.sdf.primitive;
public class SDFFlatland extends SDFPrimitive {
@Override
public float getDistance(float x, float y, float z) {
return y;
}
}