All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barrybecker4.simulation.common.rendering.bumps.HeightField Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy