Searched refs:SkMeasureAngleBetweenVectors (Results 1 – 5 of 5) sorted by relevance
/external/skia/tests/ |
D | StrokeIndirectTest.cpp | 305 float rotation = SkMeasureAngleBetweenVectors(pts[0] - lastControlPoint, in verifyResolveLevels() 338 rotation += SkMeasureAngleBetweenVectors(pts[0] - lastControlPoint, in verifyResolveLevels() 382 float rotation = SkMeasureAngleBetweenVectors(tan0, tan1); in verifyResolveLevels() 384 rotation += SkMeasureAngleBetweenVectors(p[0] - lastControlPoint, tan0); in verifyResolveLevels() 407 float rotation = SkMeasureAngleBetweenVectors(pts[0] - lastControlPoint, in verifyResolveLevels() 466 float rotation = SkMeasureAngleBetweenVectors(tan0, tan1); in verifyBuffers() 471 rotation += SkMeasureAngleBetweenVectors(lastTangent, tan0); in verifyBuffers()
|
/external/skia/src/core/ |
D | SkGeometry.h | 35 float SkMeasureAngleBetweenVectors(SkVector, SkVector); 72 return SkMeasureAngleBetweenVectors(pts[1] - pts[0], pts[2] - pts[1]); in SkMeasureQuadRotation()
|
D | SkGeometry.cpp | 177 float SkMeasureAngleBetweenVectors(SkVector a, SkVector b) { in SkMeasureAngleBetweenVectors() function 574 return SkMeasureAngleBetweenVectors(b, c); in SkMeasureNonInflectCubicRotation() 577 return SkMeasureAngleBetweenVectors(a, c); in SkMeasureNonInflectCubicRotation() 580 return SkMeasureAngleBetweenVectors(a, b); in SkMeasureNonInflectCubicRotation() 584 return 2*SK_ScalarPI - SkMeasureAngleBetweenVectors(a,-b) - SkMeasureAngleBetweenVectors(b,-c); in SkMeasureNonInflectCubicRotation()
|
/external/skia/src/gpu/tessellate/ |
D | GrStrokeIndirectTessellator.cpp | 108 float rotation = SkMeasureAngleBetweenVectors(pts[0] - lastControlPoint, pts[1] - pts[0]); in countLine() 119 rotation += SkMeasureAngleBetweenVectors(pts[0] - lastControlPoint, nextTan); in countQuad() 128 float rotation = SkMeasureAngleBetweenVectors(tan0, tan1); in countCubic() 131 rotation += SkMeasureAngleBetweenVectors(pts[0] - lastControlPoint, nextTan); in countCubic()
|
D | GrStrokeHardwareTessellator.cpp | 527 float rotation = SkMeasureAngleBetweenVectors(tan0, tan1); in internalJoinTo()
|