Home
last modified time | relevance | path

Searched refs:Transform (Results 1 – 25 of 240) sorted by relevance

12345678910

/external/eigen/Eigen/src/Eigen2Support/Geometry/
DTransform.h43 class Transform
79 inline Transform() { } in Transform() function
81 inline Transform(const Transform& other) in Transform() function
86 inline explicit Transform(const TranslationType& t) { *this = t; } in Transform() function
87 inline explicit Transform(const ScalingType& s) { *this = s; } in Transform() function
89 inline explicit Transform(const RotationBase<Derived, Dim>& r) { *this = r; } in Transform() function
91 inline Transform& operator=(const Transform& other)
97 static inline void run(Transform *transform, const MatrixBase<OtherDerived>& other) in run()
105 static inline void run(Transform *transform, const MatrixBase<OtherDerived>& other)
116 inline explicit Transform(const MatrixBase<OtherDerived>& other)
[all …]
/external/eigen/Eigen/src/Geometry/
DTransform.h19 template<typename Transform>
24 Dim = Transform::Dim,
25 HDim = Transform::HDim,
26 Mode = Transform::Mode,
178 class Transform
222 typedef Transform<Scalar,Dim,TransformTimeDiagonalMode> TransformTimeDiagonalReturnType;
232 inline Transform() in Transform() function
238 inline Transform(const Transform& other) in Transform() function
244 inline explicit Transform(const TranslationType& t) in Transform() function
249 inline explicit Transform(const UniformScaling<Scalar>& s) in Transform() function
[all …]
DScaling.h59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const;
63 …inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> operator* (const Transform<Sca…
65 Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> res = t;
153 inline Transform<Scalar,Dim,Affine>
156 Transform<Scalar,Dim,Affine> res;
DRotationBase.h56 inline Transform<Scalar,Dim,Isometry> operator*(const Translation<Scalar,Dim>& t) const
57 { return Transform<Scalar,Dim,Isometry>(*this) * t; }
80 …friend inline Transform<Scalar,Dim,Affine> operator*(const DiagonalMatrix<Scalar,Dim>& l, const De…
82 Transform<Scalar,Dim,Affine> res(r);
89 inline Transform<Scalar,Dim,Mode> operator*(const Transform<Scalar,Dim,Mode,Options>& t) const
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DTransform.java45 public final class Transform implements Savable, Cloneable, java.io.Serializable { class
49 public static final Transform IDENTITY = new Transform();
55 public Transform(Vector3f translation, Quaternion rot){ in Transform() method in Transform
60 public Transform(Vector3f translation, Quaternion rot, Vector3f scale){ in Transform() method in Transform
65 public Transform(Vector3f translation){ in Transform() method in Transform
69 public Transform(Quaternion rot){ in Transform() method in Transform
73 public Transform(){ in Transform() method in Transform
82 public Transform setRotation(Quaternion rot) { in setRotation()
92 public Transform setTranslation(Vector3f trans) { in setTranslation()
110 public Transform setScale(Vector3f scale) { in setScale()
[all …]
/external/mesa3d/src/mesa/main/
Dclip.c45 _mesa_transform_vector(ctx->Transform._ClipUserPlane[plane], in _mesa_update_clip_plane()
46 ctx->Transform.EyeUserPlane[plane], in _mesa_update_clip_plane()
84 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation)) in _mesa_ClipPlane()
88 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation); in _mesa_ClipPlane()
90 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in _mesa_ClipPlane()
112 equation[0] = (GLdouble) ctx->Transform.EyeUserPlane[p][0]; in _mesa_GetClipPlane()
113 equation[1] = (GLdouble) ctx->Transform.EyeUserPlane[p][1]; in _mesa_GetClipPlane()
114 equation[2] = (GLdouble) ctx->Transform.EyeUserPlane[p][2]; in _mesa_GetClipPlane()
115 equation[3] = (GLdouble) ctx->Transform.EyeUserPlane[p][3]; in _mesa_GetClipPlane()
Dmatrix.c152 if (ctx->Transform.MatrixMode == mode && mode != GL_TEXTURE) in _mesa_MatrixMode()
227 ctx->Transform.MatrixMode = mode; in _mesa_MatrixMode()
249 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode)); in _mesa_PushMatrix()
252 if (ctx->Transform.MatrixMode == GL_TEXTURE) { in _mesa_PushMatrix()
259 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode)); in _mesa_PushMatrix()
289 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode)); in _mesa_PopMatrix()
292 if (ctx->Transform.MatrixMode == GL_TEXTURE) { in _mesa_PopMatrix()
299 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode)); in _mesa_PopMatrix()
579 if (ctx->Transform.ClipPlanesEnabled) { in update_projection()
582 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in update_projection()
[all …]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
DFeature.java6 import com.jme3.math.Transform;
122 public Transform getTransform() { in getTransform()
149 Transform result = new Transform(loc, rot); in getTransform()
161 Transform localTransform = new Transform(bone.getLocalPosition(), bone.getLocalRotation()); in getTransform()
165Transform worldTransform = new Transform(bone.getWorldBindPosition(), bone.getWorldBindRotation()); in getTransform()
169 Transform poseTransform = new Transform(bone.getLocalPosition(), bone.getLocalRotation()); in getTransform()
173Transform parentLocalTransform = new Transform(bone.getLocalPosition(), bone.getLocalRotation()); in getTransform()
188 public void applyTransform(Transform transform) { in applyTransform()
192 Transform ownerLocalTransform = spatial.getLocalTransform(); in applyTransform()
255 Transform t = spatial.getWorldTransform(); in getWorldTransformMatrix()
[all …]
/external/llvm/include/llvm/ExecutionEngine/Orc/
DIRTransformLayer.h35 TransformFtor Transform = TransformFtor())
36 : BaseLayer(BaseLayer), Transform(std::move(Transform)) {} in BaseLayer()
50 *I = Transform(std::move(*I)); in addModuleSet()
88 TransformFtor& getTransform() { return Transform; } in getTransform()
91 const TransformFtor& getTransform() const { return Transform; } in getTransform()
95 TransformFtor Transform; variable
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
DCollisionShapeFactory.java38 import com.jme3.math.Transform;
59 private static Transform getTransform(Spatial spat, Spatial parent) { in getTransform()
60 Transform shapeTransform = new Transform(); in getTransform()
67 Transform trans = new Transform(); in getTransform()
89 Transform trans = getTransform(spatial, realRootNode); in createCompoundShape()
101 Transform trans = getTransform(spatial, realRootNode); in createCompoundShape()
116 Transform trans = getTransform(spatial, realRootNode); in createCompoundShape()
122 Transform trans = getTransform(spatial, realRootNode); in createCompoundShape()
212 Transform trans = getTransform(geom, parent); in createSingleMeshShape()
240 Transform trans = getTransform(geom, parent); in createSingleDynamicMeshShape()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
DSixDofJoint.java35 import com.bulletphysics.linearmath.Transform;
82 Transform transA = new Transform(Converter.convert(rotA)); in SixDofJoint()
86 Transform transB = new Transform(Converter.convert(rotB)); in SixDofJoint()
102 Transform transA = new Transform(Converter.convert(new Matrix3f())); in SixDofJoint()
105 Transform transB = new Transform(Converter.convert(new Matrix3f())); in SixDofJoint()
164 Transform transA = new Transform(Converter.convert(new Matrix3f())); in read()
167 Transform transB = new Transform(Converter.convert(new Matrix3f())); in read()
DConeJoint.java35 import com.bulletphysics.linearmath.Transform;
126 Transform transA = new Transform(Converter.convert(rotA)); in createJoint()
130 Transform transB = new Transform(Converter.convert(rotB)); in createJoint()
/external/mesa3d/src/mesa/tnl/
Dt_vb_cliptmp.h141 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in TAG()
142 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; in TAG()
143 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; in TAG()
144 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; in TAG()
145 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; in TAG()
230 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in TAG()
231 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; in TAG()
232 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; in TAG()
233 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; in TAG()
234 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; in TAG()
[all …]
Dt_vb_vertex.c70 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { \
72 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; \
73 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; \
74 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; \
75 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; \
126 if (ctx->Transform.DepthClamp) { in tnl_clip_prepare()
194 !ctx->Transform.DepthClamp ); in run_vertex_stage()
203 !ctx->Transform.DepthClamp ); in run_vertex_stage()
213 if (ctx->Transform.ClipPlanesEnabled) { in run_vertex_stage()
Dt_rasterpos.c92 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in userclip_point()
93 GLfloat dot = v[0] * ctx->Transform._ClipUserPlane[p][0] in userclip_point()
94 + v[1] * ctx->Transform._ClipUserPlane[p][1] in userclip_point()
95 + v[2] * ctx->Transform._ClipUserPlane[p][2] in userclip_point()
96 + v[3] * ctx->Transform._ClipUserPlane[p][3]; in userclip_point()
387 if (!ctx->Transform.DepthClamp) { in _tnl_RasterPos()
393 if (!ctx->Transform.RasterPositionUnclipped) { in _tnl_RasterPos()
401 if (ctx->Transform.ClipPlanesEnabled && !userclip_point(ctx, clip)) { in _tnl_RasterPos()
421 if (ctx->Transform.DepthClamp) { in _tnl_RasterPos()
Dt_vb_normals.c114 if (ctx->Transform.Normalize) { in validate_normal_stage()
117 else if (ctx->Transform.RescaleNormals && in validate_normal_stage()
131 if (ctx->Transform.Normalize) { in validate_normal_stage()
134 else if (!ctx->Transform.RescaleNormals && in validate_normal_stage()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/infos/
DRigidBodyMotionState.java35 import com.bulletphysics.linearmath.Transform;
51 private Transform motionStateTrans = new Transform(Converter.convert(new Matrix3f()));
74 public synchronized Transform getWorldTransform(Transform t) { in getWorldTransform()
83 public synchronized void setWorldTransform(Transform worldTrans) { in setWorldTransform()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
DCompoundCollisionShape.java35 import com.bulletphysics.linearmath.Transform;
70 Transform transA = new Transform(Converter.convert(new Matrix3f())); in addChildShape()
85 Transform transA = new Transform(Converter.convert(rotation)); in addChildShape()
96 Transform transA = new Transform(Converter.convert(rotation)); in addChildShapeDirect()
/external/llvm/lib/Transforms/Utils/
DSymbolRewriter.cpp140 const std::string Transform; member in __anondf240d7a0111::PatternRewriteDescriptor
143 : RewriteDescriptor(DT), Pattern(P), Transform(T) { } in PatternRewriteDescriptor()
162 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error); in performOnModule()
312 std::string Transform; in parseRewriteFunctionDescriptor() local
345 Transform = Value->getValue(ValueStorage); in parseRewriteFunctionDescriptor()
357 if (Transform.empty() == Target.empty()) { in parseRewriteFunctionDescriptor()
368 DL->push_back(new PatternRewriteFunctionDescriptor(Source, Transform)); in parseRewriteFunctionDescriptor()
379 std::string Transform; in parseRewriteGlobalVariableDescriptor() local
412 Transform = Value->getValue(ValueStorage); in parseRewriteGlobalVariableDescriptor()
419 if (Transform.empty() == Target.empty()) { in parseRewriteGlobalVariableDescriptor()
[all …]
/external/nanopb-c/tools/
Dmake_windows_package.sh40Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tr…
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_clip.c50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane)); in update_clip()
60 use_eye ? ctx->Transform.EyeUserPlane in update_clip()
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp)); in update_clip()
/external/eigen/bench/
Dgeometry.cpp58 EIGEN_DONT_INLINE void transform(const Transform<Scalar,Dim,Projective>& t, Data& data) in transform()
100 Transform<Scalar,3,Isometry> iso3(mat34); in main()
101 Transform<Scalar,3,Affine> aff3(mat34); in main()
102 Transform<Scalar,3,AffineCompact> caff3(mat34); in main()
103 Transform<Scalar,3,Projective> proj3(mat34); in main()
/external/skia/src/sfnt/
DSkOTTable_glyf.h156 union Transform { union
181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
DBoneContext.java10 import com.jme3.math.Transform;
41 private Transform poseTransform = new Transform();
147 Transform localTransform = new Transform(bone.getLocalPosition(), bone.getLocalRotation()); in computePoseTransform()
194 public Transform getPoseTransform() { in getPoseTransform()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DPhysicsGhostObject.java36 import com.bulletphysics.linearmath.Transform;
66 protected Transform tempTrans = new Transform(Converter.convert(new Matrix3f()));
67 private com.jme3.math.Transform physicsLocation = new com.jme3.math.Transform();
136 public com.jme3.math.Transform getPhysicsTransform() { in getPhysicsTransform()

12345678910