HomeSort by relevance Sort by last modified time
    Searched full:cubic_derivative (Results 1 - 2 of 2) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/math/
BSpline.java 48 public static <T extends Vector<T>> T cubic_derivative (final T out, final float t, final T[] points, method in class:BSpline
86 public static <T extends Vector<T>> T cubic_derivative (final T out, final int i, final float u, final T[] points, method in class:BSpline
164 return cubic_derivative(out, i, u, points, continuous, tmp);
Bezier.java 108 public static <T extends Vector<T>> T cubic_derivative (final T out, final float t, final T p0, final T p1, final T p2, method in class:Bezier
179 else if (n == 4) cubic_derivative(out, t, points.get(0), points.get(1), points.get(2), points.get(3), tmp); method

Completed in 418 milliseconds