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

  /external/skia/bench/
PolyUtilsBench.cpp 118 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
119 *poly->push() = SkPoint::Make(c + cosV * r1, c + sinV * r1);
121 sinV = SkScalarSinCos(rad, &cosV);
122 *poly->push() = SkPoint::Make(c + cosV * r2, c + sinV * r2);
145 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
146 *poly->push() = SkPoint::Make(c + cosV * r, c + sinV * r);
172 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
173 *poly->push() = SkPoint::Make(c + cosV * r, c + sinV * r);
196 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
197 *poly->push() = SkPoint::Make(c + cosV * r, c + sinV * r)
    [all...]
DashBench.cpp 147 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
148 path->lineTo(cosV, sinV);
  /external/skqp/bench/
PolyUtilsBench.cpp 118 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
119 *poly->push() = SkPoint::Make(c + cosV * r1, c + sinV * r1);
121 sinV = SkScalarSinCos(rad, &cosV);
122 *poly->push() = SkPoint::Make(c + cosV * r2, c + sinV * r2);
145 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
146 *poly->push() = SkPoint::Make(c + cosV * r, c + sinV * r);
172 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
173 *poly->push() = SkPoint::Make(c + cosV * r, c + sinV * r);
196 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
197 *poly->push() = SkPoint::Make(c + cosV * r, c + sinV * r)
    [all...]
DashBench.cpp 147 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
148 path->lineTo(cosV, sinV);
  /external/skia/samplecode/
SamplePathFill.cpp 83 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
84 path->lineTo(c + cosV * r, c + sinV * r);
  /external/skqp/samplecode/
SamplePathFill.cpp 83 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
84 path->lineTo(c + cosV * r, c + sinV * r);
  /external/skia/gm/
hairlines.cpp 152 SkScalar cosV, sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle), &cosV);
154 SkPoint p0 = SkPoint::Make(kRad * cosV, kRad * sinV);
156 sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle + kSweepAngle), &cosV);
158 SkPoint p1 = SkPoint::Make(kRad * cosV, kRad * sinV);
smallpaths.cpp 51 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
52 path->lineTo(c + cosV * r, c + sinV * r);
dashing.cpp 110 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
111 path->lineTo(cosV, sinV);
pathfill.cpp 121 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
122 path->lineTo(c + cosV * r, c + sinV * r);
  /external/skqp/gm/
hairlines.cpp 152 SkScalar cosV, sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle), &cosV);
154 SkPoint p0 = SkPoint::Make(kRad * cosV, kRad * sinV);
156 sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle + kSweepAngle), &cosV);
158 SkPoint p1 = SkPoint::Make(kRad * cosV, kRad * sinV);
smallpaths.cpp 51 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
52 path->lineTo(c + cosV * r, c + sinV * r);
dashing.cpp 110 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
111 path->lineTo(cosV, sinV);
pathfill.cpp 121 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
122 path->lineTo(c + cosV * r, c + sinV * r);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 170 float sinV = (float) Math.sin(angleV);
177 float y = d*(-sinV);
181 float ny = -sinV * cosU;
  /external/skia/tests/
PolyUtilsTest.cpp 204 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
205 *poly.push() = SkPoint::Make(c + cosV * r1, c + sinV * r1);
207 sinV = SkScalarSinCos(rad, &cosV);
208 *poly.push() = SkPoint::Make(c + cosV * r2, c + sinV * r2);
  /external/skqp/tests/
PolyUtilsTest.cpp 204 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
205 *poly.push() = SkPoint::Make(c + cosV * r1, c + sinV * r1);
207 sinV = SkScalarSinCos(rad, &cosV);
208 *poly.push() = SkPoint::Make(c + cosV * r2, c + sinV * r2);
  /external/skia/src/core/
SkMatrix.cpp 429 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, SkScalar px, SkScalar py) {
433 fMat[kMSkewX] = -sinV;
434 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
436 fMat[kMSkewY] = sinV;
438 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
462 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) {
464 fMat[kMSkewX] = -sinV;
467 fMat[kMSkewY] = sinV;
478 SkScalar sinV, cosV;
479 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV)
    [all...]
  /external/skqp/src/core/
SkMatrix.cpp 429 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, SkScalar px, SkScalar py) {
433 fMat[kMSkewX] = -sinV;
434 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
436 fMat[kMSkewY] = sinV;
438 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
462 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) {
464 fMat[kMSkewX] = -sinV;
467 fMat[kMSkewY] = sinV;
478 SkScalar sinV, cosV;
479 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV)
    [all...]
  /external/skia/modules/skottie/src/
SkottieAdapter.cpp 279 SkScalar sinV, cosV;
280 sinV = SkScalarSinCos(SkDegreesToRadians(90 - fDirection), &cosV);
281 fDropShadow->setOffset(SkVector::Make(fDistance * cosV, -fDistance * sinV));
  /external/skia/modules/canvaskit/
interface.js 89 var sinV = Math.sin(radians);
92 cosV, -sinV, sdot( sinV, py, 1 - cosV, px),
93 sinV, cosV, sdot(-sinV, px, 1 - cosV, py),
  /external/skqp/experimental/canvaskit/
interface.js 90 var sinV = Math.sin(radians);
93 cosV, -sinV, sdot( sinV, py, 1 - cosV, px),
94 sinV, cosV, sdot(-sinV, px, 1 - cosV, py),

Completed in 998 milliseconds