Lines Matching full:path

82 <path id="circleFill" d="M300,200 A 100,100 0,0,0 300,200" fill="#777" fill-opacity="0" />
83 <path id="circle" d="M300,200 A 100,100 0,0,0 300,200" fill="none" stroke="black" />
89 <path id="span1" d="M200,200 Q300,300 200,300" fill="none" stroke="black" stroke-opacity="0"/>
90 <path id="span2" d="M200,200 C100,300 100,400 200,300" fill="none" stroke="black" stroke-opacity="0"/>
91 <path id="span3" d="M200,200 C300,100 100,400 300,200" fill="none" stroke="black" stroke-opacity="0"/>
92 <path id="wedge1" d="M200,200 L500,500 A 424.26,424.26 0,0,1 200,624.26 z" fill="url(#grad1)" fill-opacity="0"/>
93 <path id="wedge2" d="M200,200 L200,624.26 A 424.26,424.26 0,0,1 -100,500 z" fill="url(#grad2)" fill-opacity="0"/>
94 <path id="wedge3" d="M200,200 L500,-100 A 424.26,424.26 0,0,1 240,622.5 z" fill="url(#grad3)" fill-opacity="0"/>
103 <path id="span4" d="M200,200 Q300,300 400,300" fill="none" stroke="black" stroke-opacity="0"/>
104 <path id="span5" d="M200,200 Q280,320 200,400" fill="none" stroke="black" stroke-opacity="0"/>
105 <path id="span6" d="M200,200 Q60,340 100,400" fill="none" stroke="black" stroke-opacity="0"/>
106 <path id="wedge4" d="M200,200 L500,500 A 424.26,424.26 0,0,1 579.47,389.74 z" fill="url(#grad1)" fill-opacity="0"/>
107 <path id="wedge5" d="M200,200 L389.74,579.47 A 424.26,424.26 0,0,1 200,500 z" fill="url(#grad2)" fill-opacity="0"/>
108 <path id="wedge6" d="M200,200 L10.26,579.47 A 424.26,424.26 0,0,1 -100,500 z" fill="url(#grad3)" fill-opacity="0"/>
119 <path d="M100,200 L300,200" fill="none" stroke="rgb(191,191,191)"/>
124 <path d="M200,100 L200,300" fill="none" stroke="rgb(191,191,191)"/>
134 <path id="wedgeXY8" d="M200,200 L500,500 A 424.26,424.26 0,0,1 624.26,200 z" fill="url(#grad1)" fill-opacity="0"/>
135 <path id="wedgeXY6" d="M200,200 L-100,500 A 424.26,424.26 0,0,1 200,624.26 z" fill="url(#grad2)" fill-opacity="0"/>
136 <path id="wedgeXY3" d="M200,200 L-100,-100 A 424.26,424.26 0,0,1 200,-175.74 z" fill="url(#grad3)" fill-opacity="0"/>
158 <path id="wedgeXY1" d="M200,200 L500,-100 A 424.26,424.26 0,0,1 624.26,200 z" fill="url(#grad4)" fill-opacity="0"/>
159 <path id="wedgeXY2" d="M200,200 L200,-175.74 A 424.26,424.26 0,0,1 500,-100 z" fill="url(#grad5)" fill-opacity="0"/>
160 <path id="wedgeXY4" d="M200,200 L-175.74,200 A 424.26,424.26 0,0,1 -100,-100 z" fill="url(#grad6)" fill-opacity="0"/>
161 <path id="wedgeXY5" d="M200,200 L-100,500 A 424.26,424.26 0,0,1 -175.74,200 z" fill="url(#grad7)" fill-opacity="0"/>
162 <path id="wedgeXY7" d="M200,200 L200,624.26 A 424.26,424.26 0,0,1 500,500 z" fill="url(#grad8)" fill-opacity="0"/>
163 <path id="lineSegment" d="M200,200 L200,624.26" fill="none" stroke="black" stroke-opacity="0"/>
172 <path id="curveSegment" d="M200,200 C250,200 300,150 300,100" fill="none" stroke="black" stroke-opacity="0"/>
173 <path id="curveSegment1" d="M200,200 C250,200 300,150 300,100" fill="none"/>
174 <path id="curveSegment2" d="M200,200 C250,200 300,150 200,100" fill="none"/>
175 <path id="curveSegment3" d="M200,200 C350,200 250,-150 170,300" fill="none"/>
190 <path id="horzSegment" d="M200,200 L341.4,200" fill="none" stroke="rgb(192,92,31)" stroke-width="2" stroke-opacity="0"/>
191 <path id="vertSegment" d="M200,200 L200,341.4" fill="none" stroke="rgb(31,92,192)" stroke-width="2" stroke-opacity="0"/>
192 <path id="diagSegment" d="M200,200 L100,100" fill="none" stroke="rgb(127,63,127)" stroke-width="2" stroke-opacity="0"/>
201 <path id="cubicSegment" fill="none" stroke="black" />
202 <path id="cubicSegment1" d="M200,200 C200,200 200,200 200,200" fill="none" />
203 <path id="cubicSegment2" d="M200,200 C250,200 300,200 300,100" fill="none"/>
325 var path = "ctx.beginPath();\n";
371 path += "ctx.arcTo(" + tangentPt.x + "," + tangentPt.y + ","
377 path += "ctx.moveTo(" + points[0].x + "," + points[0].y + ");\n";
383 path += "ctx.lineTo(" + points[0].x + "," + points[0].y + ");\n";
389 path += "ctx.lineTo(" + xObj.value + "," + c.y + ");\n";
395 path += "ctx.lineTo(" + c.x + "," + yObj.value+ ");\n";
400 path += "ctx.bezierCurveTo(" + points[0].x + "," + points[0].y + ","
416 path += "ctx.bezierCurveTo(" + points[0].x + "," + points[0].y + ","
424 path += "ctx.quadraticCurveTo(" + points[0].x + "," + points[0].y + ","
438 path += "ctx.quadraticCurveTo(" + points[0].x + "," + points[0].y + ","
440 path.quadTo(points[0], points[1]);
445 path += "ctx.closePath();\n";
452 path += "moveTo(" + args[0].x + "," + args[0].y + ");\n";
453 path += "lineTo(" + args[1].x + "," + args[1].y + ");\n";
463 return path;
514 var path = parse_path(str);
518 funcBody: path,
876 case 'path':
893 case 'path':
920 case 'path':
950 var path;
952 case 'SVG': path = element.getAttribute("d"); break;
953 case 'Canvas': path = paths[element].funcBody; break;
957 while ((match = numRegEx.exec(path))) {
962 while ((match = numRegEx.exec(path))) {
964 data.push(path.substring(sIndex, match.index));
968 if (sIndex < path.length) {
969 data.push(path.substring(sIndex, path.length));
1086 case "path":
1123 case "path":
1258 case "path":
1434 AnimationAdd([1000, 3000], lineSegment, [-22.5 * Math.PI / 180], "path", evaluate_at,
1442 "path", evaluate_at,
1475 AnimationAdd([3000, 4000], curveSegment, [0, 1], "path", interpolate_at, [cubicStart, cubicMid]);
1478 AnimationAdd([5000, 6000], curveSegment, [0, 1], "path", interpolate_at, [cubicMid, cubicEnd]);
1518 AnimationAdd([2000, 3000], cubicSegment, [0, 1], "path", cubic_partial, cubicData);
1564 function Animate(path, now, dur) {
1565 if (path.start == null) {
1566 path.start = now;
1569 if (now - path.start < dur) {
1570 requestAnimationFrame(path.animate);