Home
last modified time | relevance | path

Searched refs:sinA (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp654 double sinA = sin(angle); in rotate3d() local
656 double sinA2 = sinA * sinA; in rotate3d()
680 mat.m_matrix[1][2] = 2.0f * sinA * cosA; in rotate3d()
682 mat.m_matrix[2][1] = -2.0f * sinA * cosA; in rotate3d()
690 mat.m_matrix[0][2] = -2.0f * sinA * cosA; in rotate3d()
694 mat.m_matrix[2][0] = 2.0f * sinA * cosA; in rotate3d()
702 mat.m_matrix[0][1] = 2.0f * sinA * cosA; in rotate3d()
704 mat.m_matrix[1][0] = -2.0f * sinA * cosA; in rotate3d()
719 mat.m_matrix[0][1] = 2.0f * (x * y * sinA2 + z * sinA * cosA); in rotate3d()
720 mat.m_matrix[0][2] = 2.0f * (x * z * sinA2 - y * sinA * cosA); in rotate3d()
[all …]
/external/freetype/src/base/
Dftstroke.c1483 FT_Fixed blen, sinA, sinB, alen; in FT_Stroker_ConicTo() local
1495 sinA = ft_pos_abs( FT_Sin( alpha1 - gamma ) ); in FT_Stroker_ConicTo()
1498 alen = FT_DivFix( FT_MulFix( blen, sinA ), sinB ); in FT_Stroker_ConicTo()
1690 FT_Fixed blen, sinA, sinB, alen; in FT_Stroker_CubicTo() local
1702 sinA = ft_pos_abs( FT_Sin( alpha1 - gamma ) ); in FT_Stroker_CubicTo()
1705 alen = FT_DivFix( FT_MulFix( blen, sinA ), sinB ); in FT_Stroker_CubicTo()
/external/webkit/Source/WebCore/platform/graphics/wince/
DGraphicsContextWinCE.cpp409 int sinA = transform.m_sinA > 0 ? 1 : -1; in _rotateBitmap() local
414 int srcX = y1 * sinA + transform.m_postShiftX; in _rotateBitmap()
415 int srcY = -x1 * sinA + transform.m_postShiftY; in _rotateBitmap()