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

org.psjava.ds.math.Vector2D Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.psjava.ds.math;

public class Vector2D {
	private final T x, y;

	public static  Vector2D create(T x, T y) {
		return new Vector2D(x, y);
	}

	private Vector2D(T x, T y) {
		this.x = x;
		this.y = y;
	}

	public T x() {
		return x;
	}

	public T y() {
		return y;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy