Home
last modified time | relevance | path

Searched refs:SbDPRotation (Results 1 – 25 of 35) sorted by relevance

12

/dports/graphics/Coin/coin-Coin-4.0.0/include/Inventor/
H A DSbDPRotation.h42 class COIN_DLL_API SbDPRotation {
44 SbDPRotation(void);
56 SbDPRotation & invert(void);
66 static SbDPRotation slerp(const SbDPRotation & rot0, const SbDPRotation & rot1,
72 SbDPRotation & operator*=(const SbDPRotation & q);
74 friend COIN_DLL_API int operator==(const SbDPRotation & q1, const SbDPRotation & q2);
75 friend COIN_DLL_API int operator!=(const SbDPRotation & q1, const SbDPRotation & q2);
76 friend COIN_DLL_API SbDPRotation operator *(const SbDPRotation & q1, const SbDPRotation & q2);
84 COIN_DLL_API int operator ==(const SbDPRotation & q1, const SbDPRotation & q2);
85 COIN_DLL_API int operator !=(const SbDPRotation & q1, const SbDPRotation & q2);
[all …]
H A DSbDPMatrix.h40 class SbDPRotation; variable
65 void setRotate(const SbDPRotation & q);
80 void setTransform(const SbVec3d & t, const SbDPRotation & r, const SbVec3d & s);
81 void setTransform(const SbVec3d & t, const SbDPRotation & r, const SbVec3d & s,
82 const SbDPRotation & so);
84 const SbDPRotation & rotation, const SbVec3d & scaleFactor,
86 void getTransform(SbVec3d & t, SbDPRotation & r,
87 SbVec3d & s, SbDPRotation & so) const;
88 void getTransform(SbVec3d & translation, SbDPRotation & rotation,
89 SbVec3d & scaleFactor, SbDPRotation & scaleOrientation,
[all …]
H A DSbDPViewVolume.h45 class SbDPRotation; variable
67 SbDPRotation getAlignRotation(SbBool rightAngleOnly = FALSE) const;
82 void rotateCamera(const SbDPRotation& q);
H A DSbTypeInfo.h112 class SbDPRotation; variable
315 typedef SbDPRotation RotationType;
860 struct SbTypeInfo<SbDPRotation> {
861 typedef SbDPRotation Type;
H A DMakefile.am31 SbDPRotation.h \
H A DMakefile.in337 SbDPRotation.h \
/dports/graphics/Coin/coin-Coin-4.0.0/src/base/
H A DSbDPRotation.cpp64 SbDPRotation::SbDPRotation(void) in SbDPRotation() function in SbDPRotation
94 SbDPRotation::SbDPRotation(const double q[4]) in SbDPRotation() function in SbDPRotation
113 SbDPRotation::SbDPRotation(const SbDPMatrix & m) in SbDPRotation() function in SbDPRotation
160 SbDPRotation &
272 SbDPRotation
300 SbDPRotation&
462 SbDPRotation::operator*=(const SbDPRotation & q) in operator *=()
533 SbDPRotation
580 SbDPRotation
581 SbDPRotation::slerp(const SbDPRotation & rot0, const SbDPRotation & rot1, double t) in slerp()
[all …]
H A DSbDPMatrix.cpp107 static SbDPRotation snuggle(SbDPRotation q, SbVec4d & k);
294 SbDPMatrix::setRotate(const SbDPRotation & q) in setRotate()
646 SbDPMatrix::operator =(const SbDPRotation & q) in operator =()
1628 static SbDPRotation
1629 snuggle(SbDPRotation q, SbVec4d & k) in snuggle()
1635 SbDPRotation p; in snuggle()
1642 SbDPRotation qtoz, qp; in snuggle()
1674 p = SbDPRotation(p).invert() * qtoz; in snuggle()
1731 SbDPRotation p; in decomp_affine()
1746 parts->q = SbDPRotation(TQ.transpose()); in decomp_affine()
[all …]
H A DMakefile.in65 SbDPMatrix.cpp SbDPPlane.cpp SbDPRotation.cpp SbHeap.cpp \
86 SbDPPlane.$(OBJEXT) SbDPRotation.$(OBJEXT) SbHeap.$(OBJEXT) \
113 SbDPLine.cpp SbDPMatrix.cpp SbDPPlane.cpp SbDPRotation.cpp \
136 SbDPMatrix.cpp SbDPPlane.cpp SbDPRotation.cpp SbHeap.cpp \
153 SbDPMatrix.lo SbDPPlane.lo SbDPRotation.lo SbHeap.lo \
175 SbDPLine.cpp SbDPMatrix.cpp SbDPPlane.cpp SbDPRotation.cpp \
195 SbDPMatrix.cpp SbDPPlane.cpp SbDPRotation.cpp SbHeap.cpp \
216 SbDPMatrix.cpp SbDPPlane.cpp SbDPRotation.cpp SbHeap.cpp \
252 @AMDEP_TRUE@ ./$(DEPDIR)/SbDPRotation.Plo \
253 @AMDEP_TRUE@ ./$(DEPDIR)/SbDPRotation.Po \
[all …]
H A DSbDPViewVolume.cpp359 SbDPRotation pdrot = in getCameraSpaceMatrix()
360 SbDPRotation(this->projDir, SbVec3d(0.0f, 0.0f, -1.0f)); in getCameraSpaceMatrix()
531 SbDPRotation
567 return SbDPRotation(m); in getAlignRotation()
923 SbDPViewVolume::rotateCamera(const SbDPRotation& q) in rotateCamera()
H A DMakefile.am30 SbDPRotation.cpp \
H A DSbViewVolume.cpp349 SbDPRotation rot = this->dpvv.getAlignRotation(rightangleonly); in getAlignRotation()
504 SbDPRotation dpq(dpquat); in rotateCamera()
/dports/graphics/py-pivy/pivy-0.6.6/Inventor/
H A DSbDPRotation.i19 %extend SbDPRotation {
20 SbDPRotation __mul__(const SbDPRotation &u) { return *self * u; } in __mul__()
21 SbDPRotation __mul__(const double d) { SbDPRotation res(*self); return (res *= d); } in __mul__()
23 int __eq__(const SbDPRotation &u) { return *self == u; } in __eq__()
24 int __nq__(const SbDPRotation &u) { return *self != u; } in __nq__()
40 %ignore SbDPRotation::getValue(double & q0, double & q1, double & q2, double & q3) const;
41 %rename(getAxisAngle) SbDPRotation::getValue(SbVec3d & axis, double & radians) const;
42 %rename(getMatrix) SbDPRotation::getValue(SbDPMatrix & matrix) const;
/dports/graphics/py-pivy/pivy-0.6.6/docs/
H A DChangeLog.2006238 Inventor/misc/SoBase.i, Inventor/SbDPRotation.i,
H A DChangeLog.2004157 * Inventor/SbRotation.i, Inventor/SbDPRotation.i, Inventor/SbMatrix.i:
426 local-0.96.1/SCons/Tool/hpcc.py, Inventor/SbDPRotation.i,
508 Inventor/SbDPPlane.i, Inventor/SbDPRotation.i,
541 Inventor/SbVec2s.i, Inventor/SbImage.i, Inventor/SbDPRotation.i,
565 Inventor/SbVec2s.i, Inventor/SbImage.i, Inventor/SbDPRotation.i,
1847 Inventor/SbBox3f.i, Inventor/SbDPPlane.i, Inventor/SbDPRotation.i,
H A DChangeLog.2005559 Inventor/SbDPRotation.i, Inventor/SbVec3s.i, Inventor/SbRotation.i,
633 Inventor/SbDPRotation.i, Inventor/nodes/SoEventCallback.i,
1268 Inventor/fields/SoSFVec3f.i, Inventor/SbDPRotation.i,
/dports/graphics/Coin/coin-Coin-4.0.0/testsuite/
H A DMakefile.in438 baseSbDPRotation.cpp: $(top_srcdir)/src/base/SbDPRotation.cpp $(srcdir)/makeextract.sh
439 $(srcdir)/makeextract.sh $(top_srcdir) src/base/SbDPRotation.cpp
/dports/graphics/Coin/coin-Coin-4.0.0/build/Xcode/Coin.xcodeproj/
H A Dproject.pbxproj93 …9897F0D9425F40054FBE6 /* SbDPRotation.h in Headers */ = {isa = PBXBuildFile; fileRef = E09989090D9…
273 …4C250D92D50900EF3BB3 /* SbDPRotation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0FC47390D…
1369 …425F40054FBE6 /* SbDPRotation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
2540 …0100EF3BB3 /* SbDPRotation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
3631 E09989090D9425F40054FBE6 /* SbDPRotation.h */,
5583 E0FC47390D92D50100EF3BB3 /* SbDPRotation.cpp */,
7047 E099897F0D9425F40054FBE6 /* SbDPRotation.h in Headers */,
7291 E0FC4C250D92D50900EF3BB3 /* SbDPRotation.cpp in Sources */,
/dports/graphics/Coin/coin-Coin-4.0.0/docs/
H A Dcoin_doxygenfiles.inc614 ${path_tag}${coin_src_dir}/include/Inventor/SbDPRotation.h
835 ${path_tag}${coin_src_dir}/src/base/SbDPRotation.cpp
H A DChangeLog.20023365 include/Inventor/SbDPRotation.h, include/Inventor/SbDPViewVolume.h,
3921 src/base/SbDPPlane.cpp, src/base/SbDPRotation.cpp,
11023 * src/base/: SbDPLine.cpp, SbDPMatrix.cpp, SbDPRotation.cpp:
11955 * src/base/: SbDPLine.cpp, SbDPMatrix.cpp, SbDPRotation.cpp,
11964 SbDPRotation.h, SbVec2d.h, SbVec4d.h:
H A DChangeLog.v3.1.2198 * include/Inventor/SbDPRotation.h, include/Inventor/SbRotation.h,
199 src/base/SbDPRotation.cpp, src/base/SbRotation.cpp,
2728 include/Inventor/SbDPMatrix.h, include/Inventor/SbDPRotation.h,
4378 src/base/SbDPRotation.cpp, src/base/SbMatrix.cpp,
/dports/graphics/Coin/coin-Coin-4.0.0/build/misc/
H A Duninstall-headers.bat811 del %COINDIR%\include\Inventor\SbDPRotation.h
H A Dinstall-headers.bat811 copy /Y ..\%msvc%\..\..\include\Inventor\SbDPRotation.h %COINDIR%\include\Inventor\SbDPRotation.h >…
/dports/graphics/Coin/coin-Coin-4.0.0/build/msvc8/docs/
H A Dcoin4.doxygen449SbDPRotation.h ..\..\include\Inventor\SbDPViewVolume.h ..\..\include\Inventor\SbHeap.h ..\..\inclu…
/dports/graphics/Coin/coin-Coin-4.0.0/build/msvc7/docs/
H A Dcoin4.doxygen449SbDPRotation.h ..\..\include\Inventor\SbDPViewVolume.h ..\..\include\Inventor\SbHeap.h ..\..\inclu…

12