Home | History | Annotate | Download | only in core

Lines Matching refs:cosV

429 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, SkScalar px, SkScalar py) {
430 const SkScalar oneMinusCosV = 1 - cosV;
432 fMat[kMScaleX] = cosV;
437 fMat[kMScaleY] = cosV;
462 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) {
463 fMat[kMScaleX] = cosV;
468 fMat[kMScaleY] = cosV;
478 SkScalar sinV, cosV;
479 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
480 this->setSinCos(sinV, cosV, px, py);
484 SkScalar sinV, cosV;
485 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
486 this->setSinCos(sinV, cosV);