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

com.piro.bezier.Vector2 Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.piro.bezier;

public class Vector2 {

	public float x;
	public float y;

	public void set(float x, float y) {
		this.x = x;
		// TODO Auto-generated method stub
		this.y = y;
		
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy