Searched refs:cosV (Results 1 - 3 of 3) sorted by relevance

/external/skia/gm/
H A Dpathfill.cpp85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
86 path->lineTo(c + SkScalarMul(cosV, r), c + SkScalarMul(sinV, r));
/external/skia/samplecode/
H A DSamplePathFill.cpp85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
86 path->lineTo(c + SkScalarMul(cosV, r), c + SkScalarMul(sinV, r));
/external/skia/src/core/
H A DSkMatrix.cpp342 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, argument
344 const SkScalar oneMinusCosV = SK_Scalar1 - cosV;
346 fMat[kMScaleX] = cosV;
351 fMat[kMScaleY] = cosV;
360 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) { argument
361 fMat[kMScaleX] = cosV;
366 fMat[kMScaleY] = cosV;
376 SkScalar sinV, cosV; local
377 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
378 this->setSinCos(sinV, cosV, p
382 SkScalar sinV, cosV; local
[all...]

Completed in 85 milliseconds