com.barrybecker4.simulation.common.rendering.bumps.HeightField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bb4-simulation Show documentation
Show all versions of bb4-simulation Show documentation
bb4-simulations java code.
package com.barrybecker4.simulation.common.rendering.bumps;
/**
* @author Barry Becker
*/
public interface HeightField {
int getWidth();
int getHeight();
/** @return the heigt value for the specified coordinates */
double getValue(int x, int y);
}