com.piro.bezier.BezierHistory 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 BezierHistory
{
Vector2 startPoint = new Vector2();
Vector2 lastPoint = new Vector2();
Vector2 lastKnot = new Vector2();
public BezierHistory()
{
}
public void setStartPoint(float x, float y)
{
startPoint.set(x, y);
}
public void setLastPoint(float x, float y)
{
lastPoint.set(x, y);
}
public void setLastKnot(float x, float y)
{
lastKnot.set(x, y);
}
}