Home
last modified time | relevance | path

Searched refs:MatrixTransform (Results 1 – 25 of 715) sorted by relevance

12345678910>>...29

/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgrobot/
H A Dosgrobot.cpp204 osg::MatrixTransform* transform =new osg::MatrixTransform(); in createShapes()
221 osg::MatrixTransform* xTransform =new osg::MatrixTransform(); in buildJoint1()
229 osg::MatrixTransform *zTransform = new osg::MatrixTransform(); in buildJoint1()
245 osg::MatrixTransform* xTransform = new osg::MatrixTransform(); in buildJoint2()
253 osg::MatrixTransform* zTransform = new osg::MatrixTransform(); in buildJoint2()
295 osg::MatrixTransform* zCheat = new osg::MatrixTransform(); in buildJoint3()
410 osg::MatrixTransform* mt = new osg::MatrixTransform(); in buildEndEffector()
431 osg::MatrixTransform* zmt = new osg::MatrixTransform(); in createAxis()
437 osg::MatrixTransform* zmtCone = new osg::MatrixTransform(); in createAxis()
451 osg::MatrixTransform* mt = new osg::MatrixTransform(); in createAxis()
[all …]
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/examples/osgrobot/
H A Dosgrobot.cpp204 osg::MatrixTransform* transform =new osg::MatrixTransform(); in createShapes()
221 osg::MatrixTransform* xTransform =new osg::MatrixTransform(); in buildJoint1()
229 osg::MatrixTransform *zTransform = new osg::MatrixTransform(); in buildJoint1()
245 osg::MatrixTransform* xTransform = new osg::MatrixTransform(); in buildJoint2()
253 osg::MatrixTransform* zTransform = new osg::MatrixTransform(); in buildJoint2()
295 osg::MatrixTransform* zCheat = new osg::MatrixTransform(); in buildJoint3()
410 osg::MatrixTransform* mt = new osg::MatrixTransform(); in buildEndEffector()
431 osg::MatrixTransform* zmt = new osg::MatrixTransform(); in createAxis()
437 osg::MatrixTransform* zmtCone = new osg::MatrixTransform(); in createAxis()
451 osg::MatrixTransform* mt = new osg::MatrixTransform(); in createAxis()
[all …]
/dports/graphics/opencolorio/OpenColorIO-1.1.1/src/core/
H A DMatrixTransform.cpp40 MatrixTransformRcPtr MatrixTransform::Create()
45 void MatrixTransform::deleter(MatrixTransform* t)
50 class MatrixTransform::Impl
79 MatrixTransform::MatrixTransform()
80 : m_impl(new MatrixTransform::Impl)
91 MatrixTransform::~MatrixTransform()
97 MatrixTransform& MatrixTransform::operator= (const MatrixTransform & rhs)
113 bool MatrixTransform::equals(const MatrixTransform & other) const
150 void MatrixTransform::setMatrix(const float * m44)
155 void MatrixTransform::getMatrix(float * m44) const
[all …]
/dports/graphics/opencolorio-tools/OpenColorIO-1.1.1/src/core/
H A DMatrixTransform.cpp40 MatrixTransformRcPtr MatrixTransform::Create()
45 void MatrixTransform::deleter(MatrixTransform* t)
50 class MatrixTransform::Impl
79 MatrixTransform::MatrixTransform()
80 : m_impl(new MatrixTransform::Impl)
91 MatrixTransform::~MatrixTransform()
97 MatrixTransform& MatrixTransform::operator= (const MatrixTransform & rhs)
113 bool MatrixTransform::equals(const MatrixTransform & other) const
150 void MatrixTransform::setMatrix(const float * m44)
155 void MatrixTransform::getMatrix(float * m44) const
[all …]
/dports/graphics/py-opencolorio/OpenColorIO-1.1.1/src/core/
H A DMatrixTransform.cpp40 MatrixTransformRcPtr MatrixTransform::Create()
45 void MatrixTransform::deleter(MatrixTransform* t)
50 class MatrixTransform::Impl
79 MatrixTransform::MatrixTransform()
80 : m_impl(new MatrixTransform::Impl)
91 MatrixTransform::~MatrixTransform()
97 MatrixTransform& MatrixTransform::operator= (const MatrixTransform & rhs)
113 bool MatrixTransform::equals(const MatrixTransform & other) const
150 void MatrixTransform::setMatrix(const float * m44)
155 void MatrixTransform::getMatrix(float * m44) const
[all …]
/dports/games/pioneer/pioneer-20210723/src/scenegraph/
H A DMatrixTransform.cpp12 MatrixTransform::MatrixTransform(Graphics::Renderer *r, const matrix4x4f &m) : in MatrixTransform() function in SceneGraph::MatrixTransform
18 MatrixTransform::MatrixTransform(const MatrixTransform &mt, NodeCopyCache *cache) : in MatrixTransform() function in SceneGraph::MatrixTransform
24 Node *MatrixTransform::Clone(NodeCopyCache *cache) in Clone()
26 return cache->Copy<MatrixTransform>(this); in Clone()
29 void MatrixTransform::Accept(NodeVisitor &nv) in Accept()
34 void MatrixTransform::Render(const matrix4x4f &trans, const RenderData *rd) in Render()
41 void MatrixTransform::Render(const std::vector<matrix4x4f> &trans, const RenderData *rd) in Render()
58 void MatrixTransform::Save(NodeDatabase &db) in Save()
65 MatrixTransform *MatrixTransform::Load(NodeDatabase &db) in Load()
70 MatrixTransform *mt = new MatrixTransform(db.loader->GetRenderer(), matrix); in Load()
H A DMatrixTransform.h24 class MatrixTransform : public Group {
26 MatrixTransform(Graphics::Renderer *r, const matrix4x4f &m);
27 MatrixTransform(const MatrixTransform &, NodeCopyCache *cache = 0);
34 static MatrixTransform *Load(NodeDatabase &);
43 virtual ~MatrixTransform() {} in ~MatrixTransform()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osg/
H A DMatrixTransform.cpp17 MatrixTransform::MatrixTransform(): in MatrixTransform() function in MatrixTransform
22 MatrixTransform::MatrixTransform(const MatrixTransform& transform,const CopyOp& copyop): in MatrixTransform() function in MatrixTransform
30 MatrixTransform::MatrixTransform(const Matrix& mat ) in MatrixTransform() function in MatrixTransform
39 MatrixTransform::~MatrixTransform() in ~MatrixTransform()
43 bool MatrixTransform::computeLocalToWorldMatrix(Matrix& matrix,NodeVisitor*) const in computeLocalToWorldMatrix()
56 bool MatrixTransform::computeWorldToLocalMatrix(Matrix& matrix,NodeVisitor*) const in computeWorldToLocalMatrix()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osg/
H A DMatrixTransform.cpp17 MatrixTransform::MatrixTransform(): in MatrixTransform() function in MatrixTransform
22 MatrixTransform::MatrixTransform(const MatrixTransform& transform,const CopyOp& copyop): in MatrixTransform() function in MatrixTransform
30 MatrixTransform::MatrixTransform(const Matrix& mat ) in MatrixTransform() function in MatrixTransform
39 MatrixTransform::~MatrixTransform() in ~MatrixTransform()
43 bool MatrixTransform::computeLocalToWorldMatrix(Matrix& matrix,NodeVisitor*) const in computeLocalToWorldMatrix()
56 bool MatrixTransform::computeWorldToLocalMatrix(Matrix& matrix,NodeVisitor*) const in computeWorldToLocalMatrix()
/dports/games/openmw/openmw-openmw-0.47.0/components/nifosg/
H A Dmatrixtransform.cpp5 MatrixTransform::MatrixTransform() in MatrixTransform() function in NifOsg::MatrixTransform
6 : osg::MatrixTransform() in MatrixTransform()
10 MatrixTransform::MatrixTransform(const Nif::Transformation &trafo) in MatrixTransform() function in NifOsg::MatrixTransform
11 : osg::MatrixTransform(trafo.toMatrix()) in MatrixTransform()
17 MatrixTransform::MatrixTransform(const MatrixTransform &copy, const osg::CopyOp &copyop) in MatrixTransform() function in NifOsg::MatrixTransform
18 : osg::MatrixTransform(copy, copyop) in MatrixTransform()
H A Dmatrixtransform.hpp11 class MatrixTransform : public osg::MatrixTransform class
14 MatrixTransform();
15 MatrixTransform(const Nif::Transformation &trafo);
16 MatrixTransform(const MatrixTransform &copy, const osg::CopyOp &copyop);
18 META_Node(NifOsg, MatrixTransform) in META_Node() argument
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgWrappers/deprecated-dotosg/osg/
H A DMatrixTransform.cpp17 REGISTER_DOTOSGWRAPPER(MatrixTransform)
19 new osg::MatrixTransform,
30 new osg::MatrixTransform,
42 MatrixTransform& transform = static_cast<MatrixTransform&>(obj); in MatrixTransform_readLocalData()
74 const MatrixTransform& transform = static_cast<const MatrixTransform&>(obj); in MatrixTransform_writeLocalData()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgWrappers/deprecated-dotosg/osg/
H A DMatrixTransform.cpp17 REGISTER_DOTOSGWRAPPER(MatrixTransform)
19 new osg::MatrixTransform,
30 new osg::MatrixTransform,
42 MatrixTransform& transform = static_cast<MatrixTransform&>(obj);
74 const MatrixTransform& transform = static_cast<const MatrixTransform&>(obj);
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/include/osg/
H A DMatrixTransform21 /** MatrixTransform - is a subclass of Transform which has an osg::Matrix
25 class OSG_EXPORT MatrixTransform : public Transform
30 MatrixTransform();
33 MatrixTransform(const MatrixTransform&,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
35 MatrixTransform(const Matrix& matix);
37 META_Node(osg, MatrixTransform);
39 virtual MatrixTransform* asMatrixTransform() { return this; }
40 virtual const MatrixTransform* asMatrixTransform() const { return this; }
73 virtual ~MatrixTransform();
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osg/
H A DMatrixTransform21 /** MatrixTransform - is a subclass of Transform which has an osg::Matrix
25 class OSG_EXPORT MatrixTransform : public Transform
30 MatrixTransform();
33 MatrixTransform(const MatrixTransform&,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
35 MatrixTransform(const Matrix& matix);
37 META_Node(osg, MatrixTransform);
39 virtual MatrixTransform* asMatrixTransform() { return this; }
40 virtual const MatrixTransform* asMatrixTransform() const { return this; }
73 virtual ~MatrixTransform();
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgvirtualprogram/
H A DCreateSimpleHierachy.cpp22 osg::MatrixTransform * transform0 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
25 osg::MatrixTransform * transform1 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
28 osg::MatrixTransform * transform2 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
31 osg::MatrixTransform * transform3 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
H A DCreateAdvancedHierachy.cpp188 osg::MatrixTransform * transformCenterMiddle = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
192 osg::MatrixTransform * transformCenterTop = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
197 osg::MatrixTransform * transformCenterBottom = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
202 osg::MatrixTransform * transformLeftBottom = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
207 osg::MatrixTransform * transformRightBottom = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/examples/osgvirtualprogram/
H A DCreateSimpleHierachy.cpp22 osg::MatrixTransform * transform0 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
25 osg::MatrixTransform * transform1 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
28 osg::MatrixTransform * transform2 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
31 osg::MatrixTransform * transform3 = new osg::MatrixTransform( ); in CreateSimpleHierarchy()
H A DCreateAdvancedHierachy.cpp188 osg::MatrixTransform * transformCenterMiddle = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
192 osg::MatrixTransform * transformCenterTop = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
197 osg::MatrixTransform * transformCenterBottom = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
202 osg::MatrixTransform * transformLeftBottom = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
207 osg::MatrixTransform * transformRightBottom = new osg::MatrixTransform( ); in CreateAdvancedHierarchy()
/dports/graphics/opencolorio/OpenColorIO-1.1.1/src/jniglue/org/OpenColorIO/
H A DMatrixTransform.java32 public class MatrixTransform extends Transform class
34 public MatrixTransform() { super(); } in MatrixTransform() method in MatrixTransform
35 protected MatrixTransform(long impl) { super(impl); } in MatrixTransform() method in MatrixTransform
36 public native MatrixTransform Create(); in Create()
37 public native boolean equals(MatrixTransform obj); in equals()
/dports/graphics/opencolorio-tools/OpenColorIO-1.1.1/src/jniglue/org/OpenColorIO/
H A DMatrixTransform.java32 public class MatrixTransform extends Transform class
34 public MatrixTransform() { super(); } in MatrixTransform() method in MatrixTransform
35 protected MatrixTransform(long impl) { super(impl); } in MatrixTransform() method in MatrixTransform
36 public native MatrixTransform Create(); in Create()
37 public native boolean equals(MatrixTransform obj); in equals()
/dports/graphics/py-opencolorio/OpenColorIO-1.1.1/src/jniglue/org/OpenColorIO/
H A DMatrixTransform.java32 public class MatrixTransform extends Transform class
34 public MatrixTransform() { super(); } in MatrixTransform() method in MatrixTransform
35 protected MatrixTransform(long impl) { super(impl); } in MatrixTransform() method in MatrixTransform
36 public native MatrixTransform Create(); in Create()
37 public native boolean equals(MatrixTransform obj); in equals()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/MatrixTransform/share/qml/
H A Dmain.qml29 var kernel = MatrixTransform.kernel
31 MatrixTransform.kernel = kernel
44 text: MatrixTransform.kernel[0]
54 text: MatrixTransform.kernel[1]
64 text: MatrixTransform.kernel[2]
76 text: MatrixTransform.kernel[3]
86 text: MatrixTransform.kernel[4]
96 text: MatrixTransform.kernel[5]
/dports/games/openmw/openmw-openmw-0.47.0/components/sceneutil/
H A Dvisitor.hpp24 void apply(osg::MatrixTransform& node) override;
57 void apply(osg::MatrixTransform& node) override;
66 typedef std::map<std::string, osg::ref_ptr<osg::MatrixTransform> > NodeMap;
74 void apply(osg::MatrixTransform& trans) override;
105 void apply(osg::MatrixTransform& node) override;
117 void apply(osg::MatrixTransform& node) override;
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgmanipulator/
H A Dosgmanipulator.cpp236 osg::MatrixTransform* transform = new osg::MatrixTransform; in addDraggerToScene()
285 osg::ref_ptr<osg::MatrixTransform> transform_1 = new osg::MatrixTransform; in createDemoScene()
288 osg::ref_ptr<osg::MatrixTransform> transform_2 = new osg::MatrixTransform; in createDemoScene()
291 osg::ref_ptr<osg::MatrixTransform> transform_3 = new osg::MatrixTransform; in createDemoScene()
294 osg::ref_ptr<osg::MatrixTransform> transform_4 = new osg::MatrixTransform; in createDemoScene()
297 osg::ref_ptr<osg::MatrixTransform> transform_5 = new osg::MatrixTransform; in createDemoScene()
300 osg::ref_ptr<osg::MatrixTransform> transform_6 = new osg::MatrixTransform; in createDemoScene()
303 osg::ref_ptr<osg::MatrixTransform> transform_7 = new osg::MatrixTransform; in createDemoScene()

12345678910>>...29