com.piro.bezier.Vector2 Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy