HomeSort by relevance Sort by last modified time
    Searched refs:sinAngle (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/svg/
SVGTransform.cpp 150 double sinAngle = sin(angleInRad);
151 float cx = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * (1 - cosAngle) - m_matrix.f() * sinAngle) / (1 - cosAngle) / 2 : 0);
152 float cy = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2 : 0);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
ColorWheel.java 187 float sinAngle = (float) Math.sin(lineAngle);
189 canvas.drawLine(centerXY + centerXY * cosAngle, centerXY - centerXY * sinAngle,
191 centerXY - innerRadius * sinAngle, strokePaint);
195 sinAngle = (float) Math.sin(lineAngle);
196 canvas.drawLine(centerXY + centerXY * cosAngle, centerXY - centerXY * sinAngle,
198 centerXY - innerRadius * sinAngle, strokePaint);
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp 190 double sinAngle = sin(a);
191 AffineTransform rot(cosAngle, sinAngle, -sinAngle, cosAngle, 0, 0);

Completed in 517 milliseconds