HomeSort by relevance Sort by last modified time
    Searched defs:Spline (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/util/
Spline.java 20 * Performs spline interpolation given a set of control points.
23 public abstract class Spline {
27 * Clamps X to the domain of the spline.
35 * Creates an appropriate spline based on the properties of the control points.
37 * If the control points are monotonic then the resulting spline will preserve that and
40 public static Spline createSpline(float[] x, float[] y) {
54 * Creates a monotone cubic spline from a given set of control points.
56 * The spline is guaranteed to pass through each control point exactly.
60 * This function uses the Fritsch-Carlson method for computing the spline parameters.
71 public static Spline createMonotoneCubicSpline(float[] x, float[] y)
    [all...]
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 19 * \class Spline
20 * \brief A class representing multi-dimensional spline curves.
23 * point of the B-spline is associated with a basis function
35 class Spline
38 typedef _Scalar Scalar; /*!< The spline curve's scalar type. */
39 enum { Dimension = _Dim /*!< The spline curve's dimension. */ };
40 enum { Degree = _Degree /*!< The spline curve's degree. */ };
42 /** \brief The point type the spline is representing. */
43 typedef typename SplineTraits<Spline>::PointType PointType;
46 typedef typename SplineTraits<Spline>::KnotVectorType KnotVectorType
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 29 public class Spline {
39 private static final String LOGTAG = "Spline";
44 public Spline() {
48 public Spline(Spline spline) {
50 for (int i = 0; i < spline.mPoints.size(); i++) {
51 ControlPoint p = spline.mPoints.elementAt(i);
54 if (spline.mCurrentControlPoint == p) {
76 case Spline.RED
434 Spline spline = new Spline(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 107 import com.android.gallery3d.filtershow.imageshow.Spline;
543 Spline.setCurveHandle(curveHandle, curveHandleSize);
544 Spline.setCurveWidth((int) getPixelsFromDip(3));
    [all...]

Completed in 324 milliseconds