Example usage for com.badlogic.gdx.math CatmullRomSpline CatmullRomSpline

List of usage examples for com.badlogic.gdx.math CatmullRomSpline CatmullRomSpline

Introduction

In this page you can find the example usage for com.badlogic.gdx.math CatmullRomSpline CatmullRomSpline.

Prototype

public CatmullRomSpline() 

Source Link

Usage

From source file:com.steelkiwi.patheditor.path.PathSpline.java

License:Apache License

public PathSpline() {
    spline = new CatmullRomSpline();
    controlVertices = new ArrayList<Vector3>();
}