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

Side by Side Diff: experimental/docs/utilities.js

Issue 1342523002: json based animation toy (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: wip whats next? Created 5 years, 1 month 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 | « experimental/docs/svgbaseddoc.htm ('k') | resources/slides.lua » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 function alpha(value, color) {
2 return value << 24 | (color & 0x00FFFFFF);
3 }
4
5 function argb(a, r, g, b) {
6 return a << 24 | r << 16 | g << 8 | b;
7 }
8
9 function assert(condition) {
10 if (!condition) debugger;
11 }
12
13 function isAlpha(code) {
14 return (code > 64 && code < 91) // upper alpha (A-Z)
15 || (code > 96 && code < 123); // lower alpha (a-z)
16 }
17
18 function isArray(a) {
19 return a.constructor === Array;
20 }
21
22 function rgb(r, g, b) {
23 return 0xFF << 24 | r << 16 | g << 8 | b;
24 }
OLDNEW
« no previous file with comments | « experimental/docs/svgbaseddoc.htm ('k') | resources/slides.lua » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698