com.piro.bezier.Vector2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JavaCad Show documentation
Show all versions of JavaCad Show documentation
A Java based CSG Cad library
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;
}
}