Searched refs:spline (Results 1 - 11 of 11) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DMotionPath.java62 private Spline spline = new Spline(); field in class:MotionPath
109 for (Iterator<Vector3f> it = spline.getControlPoints().iterator(); it.hasNext();) {
116 switch (spline.getType()) {
137 Geometry lineGeometry = new Geometry("line", new Curve(spline, 0));
147 Geometry lineGeometry = new Geometry("line", new Curve(spline, 10));
155 oc.write(spline, "spline", null);
161 spline = (Spline) in.readSavable("spline", null);
173 distance = distance % spline
[all...]
/external/eigen/unsupported/test/
H A Dsplines.cpp17 // force the compilation of all spline functions...
66 /* create a reference spline */
99 Spline3d spline = spline3d(); local
128 Vector3d pt = spline(u(i));
136 Spline3d spline = spline3d(); local
138 RowVectorXd u = spline.knots();
156 Vector3d pt = spline(u(i));
163 Spline2d spline = closed_spline2d(); local
196 Vector2d pt = spline(u(i));
214 const Spline2d spline local
226 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3,chord_lengths); local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DCurve.java51 private Spline spline; field in class:Curve
62 * Use a CatmullRom spline model that does not cycle.
74 * @param spline the spline to use
77 public Curve(Spline spline, int nbSubSegments) { argument
79 this.spline = spline;
80 switch (spline.getType()) {
98 float[] array = new float[((spline.getControlPoints().size() - 1) * nbSubSegments + 1) * 3];
99 short[] indices = new short[(spline
[all...]
/external/eigen/unsupported/Eigen/src/Splines/
H A DSpline.h20 * \brief A class representing multi-dimensional spline curves.
23 * point of the B-spline is associated with a basis function
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. */
51 /** \brief The data type representing the spline's control points. */
55 * \brief Creates a (constant) zero spline.
70 * \brief Creates a spline from a knot vector and control points.
71 * \param knots The spline'
82 Spline(const Spline<Scalar, Dimension, OtherDegree>& spline) argument
292 derivativesImpl(const SplineType& spline, typename SplineType::Scalar u, DenseIndex order, DerivativeType& der) argument
350 basisFunctionDerivativesImpl(const SplineType& spline, typename SplineType::Scalar u, DenseIndex order, DerivativeType& N_) argument
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java133 public static final float spline(float x, final float[] knot) { method in class:ShaderUtils
157 /* Find the appropriate 4-point span of the spline. */
172 public static final float[] spline(final float x, final float[][] knots) { method in class:ShaderUtils
175 retval[i] = ShaderUtils.spline(x, knots[i]);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
H A DCurvesHelper.java240 Spline spline = new Spline(SplineType.Bezier, controlPoints, 0, false);
241 Curve curve = new Curve(spline, resolution);
560 Spline spline = new Spline(SplineType.Bezier, controlPoints, 0, false);
562 return new Curve(spline, resolution);
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 290 milliseconds