Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: experimental/SkV8Example/gears.js

Issue 143743004: Both gears and snow should detect if Path is available, and also report on the console if present. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | experimental/SkV8Example/snow.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var IS_SKV8 = typeof document == "undefined"; 1 var IS_SKV8 = typeof document == "undefined";
2 var HAS_PATH = typeof Path != "undefined"; 2 var HAS_PATH = typeof Path != "undefined";
3 3
4 var NumTeeth = 24; 4 var NumTeeth = 24;
5 var NumGears = 60; 5 var NumGears = 60;
6 var DeltaTheta = Math.PI/90; 6 var DeltaTheta = Math.PI/90;
7 var FaceColors = ["#000099", "#006600", "#990000", "#EEEE00"]; 7 var FaceColors = ["#000099", "#006600", "#990000", "#EEEE00"];
8 var SideColors = ["#0000FF", "#009900", "#FF0000", "#CCCC00"]; 8 var SideColors = ["#0000FF", "#009900", "#FF0000", "#CCCC00"];
9 9
10 function makeGear(pathLike, r) { 10 function makeGear(pathLike, r) {
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 var canvas = document.getElementById("gears"); 132 var canvas = document.getElementById("gears");
133 var ctx = canvas.getContext("2d"); 133 var ctx = canvas.getContext("2d");
134 function drawCallback() { 134 function drawCallback() {
135 onDraw(ctx); 135 onDraw(ctx);
136 setTimeout(drawCallback, 1); 136 setTimeout(drawCallback, 1);
137 } 137 }
138 setTimeout(drawCallback, 1); 138 setTimeout(drawCallback, 1);
139 } 139 }
140 } 140 }
141 141
142 console.log("HAS_PATH: " + HAS_PATH);
OLDNEW
« no previous file with comments | « no previous file | experimental/SkV8Example/snow.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698