Lines Matching refs:SkVector
12 static void ButtCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in ButtCapper()
17 static void RoundCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in RoundCapper()
19 SkVector parallel; in RoundCapper()
28 static void SquareCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in SquareCapper()
30 SkVector parallel; in SquareCapper()
45 static bool is_clockwise(const SkVector& before, const SkVector& after) { in is_clockwise()
67 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) { in HandleInnerJoin()
81 static void BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, in BluntJoiner()
82 const SkPoint& pivot, const SkVector& afterUnitNormal, in BluntJoiner()
84 SkVector after; in BluntJoiner()
96 static void RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, in RoundJoiner()
97 const SkPoint& pivot, const SkVector& afterUnitNormal, in RoundJoiner()
105 SkVector before = beforeUnitNormal; in RoundJoiner()
106 SkVector after = afterUnitNormal; in RoundJoiner()
132 static void MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, in MiterJoiner()
133 const SkPoint& pivot, const SkVector& afterUnitNormal, in MiterJoiner()
139 SkVector before = beforeUnitNormal; in MiterJoiner()
140 SkVector after = afterUnitNormal; in MiterJoiner()
141 SkVector mid; in MiterJoiner()