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

uk.ac.rdg.resc.edal.graphics.style.InterpolationPoint Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
package uk.ac.rdg.resc.edal.graphics.style;

public class InterpolationPoint {
	private Float data;
	private T value;
	
	public InterpolationPoint(Float data, T value) {
		this.data = data;
		this.value = value;
	}
	
	public Float getData() {
		return data;
	}
	
	public T getValue() {
		return value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy