OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cosA
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp
655
double
cosA
= cos(angle);
680
mat.m_matrix[1][2] = 2.0f * sinA *
cosA
;
682
mat.m_matrix[2][1] = -2.0f * sinA *
cosA
;
690
mat.m_matrix[0][2] = -2.0f * sinA *
cosA
;
694
mat.m_matrix[2][0] = 2.0f * sinA *
cosA
;
702
mat.m_matrix[0][1] = 2.0f * sinA *
cosA
;
704
mat.m_matrix[1][0] = -2.0f * sinA *
cosA
;
719
mat.m_matrix[0][1] = 2.0f * (x * y * sinA2 + z * sinA *
cosA
);
720
mat.m_matrix[0][2] = 2.0f * (x * z * sinA2 - y * sinA *
cosA
);
721
mat.m_matrix[1][0] = 2.0f * (y * x * sinA2 - z * sinA *
cosA
);
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp
394
int
cosA
= transform.m_cosA > 0 ? 1 : -1;
399
int srcX = x1 *
cosA
+ transform.m_postShiftX;
400
int srcY = y1 *
cosA
- transform.m_postShiftY;
[
all
...]
Completed in 605 milliseconds