Searched refs:isClockwise (Results 1 – 3 of 3) sorted by relevance
490 const bool isClockwise = matrix.getSkewX() < 0; in transform() local493 xScale = matrix.getSkewY() * (isClockwise ? 1 : -1); in transform()494 yScale = matrix.getSkewX() * (isClockwise ? -1 : 1); in transform()496 const int dir = isClockwise ? 3 : 1; in transform()
29 static bool isClockwise(const SkPoint& a, const SkPoint& b) { return a.cross(b) > 0; } in isClockwise() function227 if (!isClockwise(before, after)) { in join()
26 inline bool isClockwise(const SkPoint& a, const SkPoint& b) { return a.cross(b) > 0; } in isClockwise() function795 outerJoin = isClockwise(before, after); in join()799 outerJoin = !isClockwise(before, after); in join()