Home | History | Annotate | Download | only in core

Lines Matching refs:cosV

434 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, SkScalar px, SkScalar py) {
435 const SkScalar oneMinusCosV = 1 - cosV;
437 fMat[kMScaleX] = cosV;
442 fMat[kMScaleY] = cosV;
467 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) {
468 fMat[kMScaleX] = cosV;
473 fMat[kMScaleY] = cosV;
483 SkScalar sinV, cosV;
484 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
485 this->setSinCos(sinV, cosV, px, py);
489 SkScalar sinV, cosV;
490 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
491 this->setSinCos(sinV, cosV);