OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EulerAngles
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Geometry.js
78
WebInspector.Geometry.
EulerAngles
= function(alpha, beta, gamma)
87
* @return {!WebInspector.Geometry.
EulerAngles
}
89
WebInspector.Geometry.
EulerAngles
.fromRotationMatrix = function(rotationMatrix)
94
return new WebInspector.Geometry.
EulerAngles
(WebInspector.Geometry.radToDeg(alpha), WebInspector.Geometry.radToDeg(beta), WebInspector.Geometry.radToDeg(gamma));
/external/eigen/demos/opengl/
quaternion_demo.cpp
135
template<typename _Scalar> class
EulerAngles
150
EulerAngles
() {}
151
inline
EulerAngles
(Scalar a0, Scalar a1, Scalar a2) : m_angles(a0, a1, a2) {}
152
inline
EulerAngles
(const QuaternionType& q) { *this = q; }
157
EulerAngles
& operator=(const QuaternionType& q)
163
EulerAngles
& operator=(const Matrix3& m)
189
template<>
EulerAngles
<float> lerp(float t, const
EulerAngles
<float>& a, const
EulerAngles
<float>& b)
191
EulerAngles
<float> res
[
all
...]
Completed in 538 milliseconds