11 lines
233 B
Java
11 lines
233 B
Java
package mindustry.graphics.g3d;
|
|
|
|
import arc.graphics.*;
|
|
import arc.math.geom.*;
|
|
|
|
/** Defines color and height for a planet mesh. */
|
|
public interface HexMesher{
|
|
float getHeight(Vec3 position);
|
|
Color getColor(Vec3 position);
|
|
}
|