Lines Matching refs:next
33 …ommand>& cmds, Array<Point>& pts, const Point& prev, const Point& curr, const Point& next, float r) in _roundCorner() argument
37 auto lenNext = length(next - curr); in _roundCorner()
41 auto dNext = rNext * (curr - next); in _roundCorner()
252 auto& next = (i < inPts.count - start) ? inPts[i + 4] : inPts[2]; in modifyPolystar() local
254 auto dNext = r * (curr - next); in modifyPolystar()
267 outPts.push(p3); outPts.push(next); outPts.push(nextCtrl); in modifyPolystar()
280 auto& next = (i == inPts.count - 1) ? inPts[1] : inPts[i + 1]; in modifyPolystar() local
281 auto dNext = r * (curr - next); in modifyPolystar()
339 Bezier next; in modifyPath() local
340 bezier.split(0.5f, next); in modifyPath()
341 stack.push(next); in modifyPath()