Lines Matching refs:points
119 SkPoint points[3]; in parseSVG() local
144 data = find_points(data, points, 1, relative, &c); in parseSVG()
145 fPath.moveTo(points[0]); in parseSVG()
147 c = points[0]; in parseSVG()
150 data = find_points(data, points, 1, relative, &c); in parseSVG()
151 fPath.lineTo(points[0]); in parseSVG()
152 c = points[0]; in parseSVG()
169 data = find_points(data, points, 3, relative, &c); in parseSVG()
172 data = find_points(data, &points[1], 2, relative, &c); in parseSVG()
173 points[0] = c; in parseSVG()
175 points[0].fX -= lastc.fX - c.fX; in parseSVG()
176 points[0].fY -= lastc.fY - c.fY; in parseSVG()
182 quadApprox(fPath, points[0], points[1], points[2]); in parseSVG()
184 fPath.cubicTo(points[0], points[1], points[2]); in parseSVG()
188 lastc = points[1]; in parseSVG()
189 c = points[2]; in parseSVG()
192 data = find_points(data, points, 2, relative, &c); in parseSVG()
195 data = find_points(data, &points[1], 1, relative, &c); in parseSVG()
196 points[0] = points[1]; in parseSVG()
198 points[0].fX = c.fX * 2 - lastc.fX; in parseSVG()
199 points[0].fY = c.fY * 2 - lastc.fY; in parseSVG()
202 fPath.quadTo(points[0], points[1]); in parseSVG()
203 lastc = points[0]; in parseSVG()
204 c = points[1]; in parseSVG()