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

org.metacsp.spatial.geometry.Position Maven / Gradle / Ivy

package org.metacsp.spatial.geometry;

public class Position {
	
	private double x;
	private double y;
	
	
	public Position(double x, double y) {
		this.x = x;
		this.y = y;
	}
	
	public double getX() {
		return x;
	}
	
	public double getY() {
		return y;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy