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

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

There is a newer version: 2.0.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy