HomeSort by relevance Sort by last modified time
    Searched refs:Scaling (Results 1 - 19 of 19) sorted by null

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 16 * \class Scaling
18 * \brief Represents a possibly non uniform scaling transformation
23 * \note This class is not aimed to be used to store a scaling transformation,
29 class Scaling
53 Scaling() {}
54 /** Constructs and initialize a uniform scaling transformation */
55 explicit inline Scaling(const Scalar& s) { m_coeffs.setConstant(s); }
57 inline Scaling(const Scalar& sx, const Scalar& sy)
64 inline Scaling(const Scalar& sx, const Scalar& sy, const Scalar& sz)
71 /** Constructs and initialize the scaling transformation from a vector of scaling coefficients *
    [all...]
All.h 17 #include "Scaling.h"
49 #define Scaling eigen2_Scaling
70 #include "Scaling.h"
104 #undef Scaling
RotationBase.h 48 /** \returns the concatenation of the rotation \c *this with a scaling \a s */
49 inline RotationMatrixType operator*(const Scaling<Scalar,Dim>& s) const
Translation.h 26 * \sa class Scaling, class Transform
41 /** corresponding scaling transformation type */
42 typedef Scaling<Scalar,Dim> ScalingType;
69 /** Constructs and initialize the scaling transformation from a vector of scaling coefficients */
79 /** Concatenates a translation and a scaling */
Transform.h 69 /** corresponding scaling transformation type */
70 typedef Scaling<Scalar,Dim> ScalingType;
237 void computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const;
239 void computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const;
527 *** Scaling, Translation and Rotation compatibility ***
606 /** decomposes the linear part of the transformation as a product rotation x scaling, the scaling being
619 void Transform<Scalar,Dim>::computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const
625 if(scaling)
627 scaling->noalias() = svd.matrixV() * sv.asDiagonal() * svd.matrixV().adjoint()
    [all...]
  /external/eigen/Eigen/src/Geometry/
Scaling.h 17 * \class Scaling
19 * \brief Represents a generic uniform scaling transformation
23 * This class represent a uniform scaling transformation. It is the return
24 * type of Scaling(Scalar), and most of the time this is the only way it
25 * is used. In particular, this class is not aimed to be used to store a scaling transformation,
28 * To represent an axis aligned scaling, use the DiagonalMatrix class.
30 * \sa Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
47 /** Constructs and initialize a uniform scaling transformation */
53 /** Concatenates two uniform scaling */
57 /** Concatenates a uniform scaling and a translation *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxgitype.h 61 DXGI_MODE_SCALING Scaling;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
dxgitype.idl 63 DXGI_MODE_SCALING Scaling;
  /external/eigen/test/
geo_transformations.cpp 269 // mat * aligned scaling and mat * translation
272 t1 = (Matrix3(q1) * Eigen::Scaling(v0)) * Translation3(v0);
274 t1 = (q1 * Eigen::Scaling(v0)) * Translation3(v0);
276 // mat * transformation and aligned scaling * translation
283 t1 = Eigen::Scaling(s0) * Translation3(v0);
286 t1 = Eigen::Scaling(s0) * t1;
291 t1 = t3 * Eigen::Scaling(s0,s0,s0);
294 t1 = Eigen::Scaling(s0,s0,s0) * t1;
299 t1 = t3 * Eigen::Scaling(s0);
302 t1 = Eigen::Scaling(s0) * t1
    [all...]
  /external/eigen/unsupported/test/
openglsupport.cpp 198 // scaling (2D and 3D)
201 VERIFY_MATRIX(glScale(vf2), Projective3f(Scaling(vf23)).matrix());
203 VERIFY_MATRIX(glScale(vd2), Projective3d(Scaling(vd23)).matrix());
206 VERIFY_MATRIX(glScale(vf3), Projective3f(Scaling(vf3)).matrix());
208 VERIFY_MATRIX(glScale(vd3), Projective3d(Scaling(vd3)).matrix());
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 31 typedef Scaling<Scalar,2> Scaling2;
32 typedef Scaling<Scalar,3> Scaling3;
254 // mat * scaling and mat * translation
257 // mat * transformation and scaling * translation
263 // translation * scaling and transformation * mat
266 // scaling * mat and translation * mat
272 // translation * mat and scaling * transformation
275 // transformation * scaling
298 // scaling * quaternion
313 // quaternion * scaling
    [all...]
eigen2_hyperplane.cpp 53 Scaling<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random());
61 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling).absDistance((rot*scaling) * p1), Scalar(1) );
63 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling*translation)
64 .absDistance((rot*scaling*translation) * p1), Scalar(1) );
  /external/eigen/demos/opengl/
quaternion_demo.cpp 80 Affine3f t = Translation3f(c) * q * Scaling(mRadii[i]+radius);
101 Affine3f t = Translation3f(mCenters[i]) * Scaling(mRadii[i]);
  /external/libavc/common/arm/
ih264_iquant_itrans_recon_a9.s 502 vld1.32 {q10}, [r6]! @ Q10 = scaling factors row 0
505 vld1.32 {q11}, [r6]! @ Q11 = scaling factors row 1
512 vld1.32 {q13}, [r6]! @ Scaling factors row 2
514 vld1.32 {q14}, [r6]! @ Scaling factors row 3
525 vld1.32 {q4}, [r6]! @ Scaling factors row 4
528 vld1.32 {q5}, [r6]! @ Scaling factors row 5
544 vld1.32 {q13}, [r6]! @ Scaling factors row 6
554 vld1.32 {q14}, [r6]! @ Scaling factors row 7
565 vmul.s16 q10, q10, q13 @ Dequant*scaling row 6
566 vmul.s16 q11, q11, q14 @ Dequant*scaling row
    [all...]
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 256 template<typename Scalar,int Dim> class Scaling;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 423 dxgi_modes[i].Scaling = DXGI_MODE_SCALING_UNSPECIFIED;
445 dxgi_modes[0].Scaling = DXGI_MODE_SCALING_UNSPECIFIED;
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /frameworks/base/docs/html/training/
training_toc.cs     [all...]
  /external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/
ssvnc.tcl     [all...]

Completed in 2419 milliseconds