OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Matrix3F
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gfx/
matrix3_f.h
13
class GFX_EXPORT
Matrix3F
{
15
~
Matrix3F
();
17
static
Matrix3F
Zeros();
18
static
Matrix3F
Ones();
19
static
Matrix3F
Identity();
20
static
Matrix3F
FromOuterProduct(const Vector3dF& a, const Vector3dF& bt);
22
bool IsEqual(const
Matrix3F
& rhs) const;
25
bool IsNear(const
Matrix3F
& rhs, float precision) const;
64
Matrix3F
Inverse() const;
88
Vector3dF SolveEigenproblem(
Matrix3F
* eigenvectors) const
[
all
...]
matrix3_f.cc
33
// This routine is separated from the
Matrix3F
::Determinant because in
52
Matrix3F
::
Matrix3F
() {
55
Matrix3F
::~
Matrix3F
() {
59
Matrix3F
Matrix3F
::Zeros() {
60
Matrix3F
matrix;
66
Matrix3F
Matrix3F
::Ones()
[
all
...]
Completed in 106 milliseconds