/external/skqp/src/core/ |
D | SkMath.cpp | 72 float sinValue = sk_float_sin(radians); in SkScalarSinCos() local 81 if (SkScalarNearlyZero(sinValue)) { in SkScalarSinCos() 82 sinValue = 0; in SkScalarSinCos() 84 return sinValue; in SkScalarSinCos()
|
/external/skia/src/core/ |
D | SkMath.cpp | 72 float sinValue = sk_float_sin(radians); in SkScalarSinCos() local 81 if (SkScalarNearlyZero(sinValue)) { in SkScalarSinCos() 82 sinValue = 0; in SkScalarSinCos() 84 return sinValue; in SkScalarSinCos()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowMatrix.java | 145 public void setSinCos(float sinValue, float cosValue, float px, float py) { in setSinCos() argument 146 setOps.put(SINCOS, sinValue + " " + cosValue + " " + px + " " + py); in setSinCos() 147 mMatrix = SimpleMatrix.sinCos(sinValue, cosValue, px, py); in setSinCos() 151 public void setSinCos(float sinValue, float cosValue) { in setSinCos() argument 152 setOps.put(SINCOS, sinValue + " " + cosValue); in setSinCos() 153 mMatrix = SimpleMatrix.sinCos(sinValue, cosValue); in setSinCos()
|
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.cpp | 269 float sinValue = sin(fRadian); in Rotate() local 270 ConcatInternal(CFX_Matrix(cosValue, sinValue, -sinValue, cosValue, 0, 0), in Rotate()
|
D | fx_coordinates.h | 169 float sinValue = sin(fRadian); in Rotate() local 170 x = x * cosValue - y * sinValue; in Rotate() 171 y = x * sinValue + y * cosValue; in Rotate()
|
/external/skia/include/core/ |
D | SkMatrix.h | 594 void setSinCos(SkScalar sinValue, SkScalar cosValue, 605 void setSinCos(SkScalar sinValue, SkScalar cosValue);
|
/external/skqp/include/core/ |
D | SkMatrix.h | 594 void setSinCos(SkScalar sinValue, SkScalar cosValue, 605 void setSinCos(SkScalar sinValue, SkScalar cosValue);
|
/external/skia/docs/ |
D | SkMatrix_Reference.bmh | 1647 #Method void setSinCos(SkScalar sinValue, SkScalar cosValue, 1653 Sets Matrix to rotate by sinValue and cosValue, about a pivot point at (px, py). 1656 Vector (sinValue, cosValue) describes the angle of rotation relative to (0, 1). 1659 #Param sinValue rotation vector x component ## 1684 #Method void setSinCos(SkScalar sinValue, SkScalar cosValue) 1686 Sets Matrix to rotate by sinValue and cosValue, about a pivot point at (0, 0). 1688 Vector (sinValue, cosValue) describes the angle of rotation relative to (0, 1). 1691 #Param sinValue rotation vector x component ##
|
/external/skqp/docs/ |
D | SkMatrix_Reference.bmh | 1629 #Method void setSinCos(SkScalar sinValue, SkScalar cosValue, 1633 Sets Matrix to rotate by sinValue and cosValue, about a pivot point at (px, py). 1636 Vector (sinValue, cosValue) describes the angle of rotation relative to (0, 1). 1639 #Param sinValue rotation vector x component ## 1664 #Method void setSinCos(SkScalar sinValue, SkScalar cosValue) 1666 Sets Matrix to rotate by sinValue and cosValue, about a pivot point at (0, 0). 1668 Vector (sinValue, cosValue) describes the angle of rotation relative to (0, 1). 1671 #Param sinValue rotation vector x component ##
|
/external/skia/site/user/api/ |
D | SkMatrix_Reference.md | 156 | | <a href="#SkMatrix_setSinCos">setSinCos(SkScalar sinValue, SkScalar cosValue, SkScalar px, SkS… 157 | | <a href="#SkMatrix_setSinCos_2">setSinCos(SkScalar sinValue, SkScalar cosValue)</a> | 1926 void setSinCos(SkScalar sinValue, SkScalar cosValue, SkScalar px, SkScalar py) 1929 Sets <a href="#Matrix">Matrix</a> to rotate by <a href="#SkMatrix_setSinCos_sinValue">sinValue</a> … 1932 <a href="SkPoint_Reference#Vector">Vector</a> (<a href="#SkMatrix_setSinCos_sinValue">sinValue</a>,… 1937 <table> <tr> <td><a name="SkMatrix_setSinCos_sinValue"> <code><strong>sinValue </strong></code>… 1961 void setSinCos(SkScalar sinValue, SkScalar cosValue) 1964 Sets <a href="#Matrix">Matrix</a> to rotate by <a href="#SkMatrix_setSinCos_2_sinValue">sinValue</a… 1966 <a href="SkPoint_Reference#Vector">Vector</a> (<a href="#SkMatrix_setSinCos_2_sinValue">sinValue</a… 1971 <table> <tr> <td><a name="SkMatrix_setSinCos_2_sinValue"> <code><strong>sinValue </strong></cod…
|
/external/skqp/site/user/api/ |
D | SkMatrix_Reference.md | 1814 void setSinCos(SkScalar sinValue, SkScalar cosValue, SkScalar px, SkScalar py) 1817 Sets <a href="#Matrix">Matrix</a> to rotate by <a href="#SkMatrix_setSinCos_sinValue">sinValue</a> … 1820 <a href="SkPoint_Reference#Vector">Vector</a> (<a href="#SkMatrix_setSinCos_sinValue">sinValue</a>,… 1825 <table> <tr> <td><a name="SkMatrix_setSinCos_sinValue"> <code><strong>sinValue </strong></code>… 1849 void setSinCos(SkScalar sinValue, SkScalar cosValue) 1852 Sets <a href="#Matrix">Matrix</a> to rotate by <a href="#SkMatrix_setSinCos_2_sinValue">sinValue</a… 1854 <a href="SkPoint_Reference#Vector">Vector</a> (<a href="#SkMatrix_setSinCos_2_sinValue">sinValue</a… 1859 <table> <tr> <td><a name="SkMatrix_setSinCos_2_sinValue"> <code><strong>sinValue </strong></cod…
|