OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SplineType
(Results
1 - 11
of
11
) sorted by null
/external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h
87
template <typename
SplineType
>
90
typedef typename
SplineType
::KnotVectorType KnotVectorType;
101
static
SplineType
Interpolate(const PointArrayType& pts, DenseIndex degree);
113
static
SplineType
Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters);
116
template <typename
SplineType
>
118
SplineType
SplineFitting<
SplineType
>::Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters)
120
typedef typename
SplineType
::KnotVectorType::Scalar Scalar;
121
typedef typename
SplineType
::BasisVectorType BasisVectorType;
122
typedef typename
SplineType
::ControlPointVectorType ControlPointVectorType;
[
all
...]
Spline.h
276
template <typename
SplineType
, typename DerivativeType>
277
void derivativesImpl(const
SplineType
& spline, typename
SplineType
::Scalar u, DenseIndex order, DerivativeType& der)
279
enum { Dimension = SplineTraits<
SplineType
>::Dimension };
280
enum { Order = SplineTraits<
SplineType
>::OrderAtCompileTime };
283
typedef typename SplineTraits<
SplineType
>::Scalar Scalar;
285
typedef typename SplineTraits<
SplineType
>::BasisVectorType BasisVectorType;
286
typedef typename SplineTraits<
SplineType
>::ControlPointVectorType ControlPointVectorType;
288
typedef typename SplineTraits<
SplineType
,DerivativeOrder>::BasisDerivativeType BasisDerivativeType;
338
template <typename
SplineType
, typename DerivativeType
[
all
...]
SplineFwd.h
19
template < typename
SplineType
, int DerivativeOrder = Dynamic > struct SplineTraits {};
/external/jmonkeyengine/engine/src/core/com/jme3/math/
Spline.java
19
public enum
SplineType
{
35
private
SplineType
type =
SplineType
.CatmullRom;
42
* @param
splineType
the type of the spline @see {
SplineType
}
55
public Spline(
SplineType
splineType
, Vector3f[] controlPoints, float curveTension, boolean cycle) {
56
if(
splineType
==
SplineType
.Nurb) {
63
type =
splineType
;
[
all
...]
CurveAndSurfaceMath.java
3
import com.jme3.math.Spline.
SplineType
;
28
if (nurbSpline.getType() !=
SplineType
.Nurb) {
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Surface.java
5
import com.jme3.math.Spline.
SplineType
;
23
private
SplineType
type; //the type of the surface
43
this.type =
SplineType
.Nurb;
71
result.type =
SplineType
.Nurb;
192
public
SplineType
getType() {
Curve.java
68
this(new Spline(Spline.
SplineType
.CatmullRom, controlPoints, 10, false), nbSubSegments);
/external/jmonkeyengine/engine/src/test/jme3test/animation/
TestCameraMotionPath.java
47
import com.jme3.math.Spline.
SplineType
;
183
if (path.getPathSplineType() ==
SplineType
.CatmullRom){
184
path.setPathSplineType(
SplineType
.Linear);
186
path.setPathSplineType(
SplineType
.CatmullRom);
TestMotionPath.java
48
import com.jme3.math.Spline.
SplineType
;
173
if (path.getPathSplineType() ==
SplineType
.CatmullRom){
174
path.setPathSplineType(
SplineType
.Linear);
176
path.setPathSplineType(
SplineType
.CatmullRom);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
MotionPath.java
40
import com.jme3.math.Spline.
SplineType
;
238
public
SplineType
getPathSplineType() {
246
public void setPathSplineType(
SplineType
pathSplineType) {
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java
5
import com.jme3.math.Spline.
SplineType
;
145
Spline bevelSpline = new Spline(
SplineType
.Bezier, conrtolPoints, 0, false);
150
Spline bevelSpline = new Spline(
SplineType
.Linear, new Vector3f[]{
240
Spline spline = new Spline(
SplineType
.Bezier, controlPoints, 0, false);
560
Spline spline = new Spline(
SplineType
.Bezier, controlPoints, 0, false);
Completed in 293 milliseconds