Skip to content

Commit

Permalink
chore(jspm) index for bundled and instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
stared committed Oct 25, 2015
1 parent d1b1141 commit 46ab6f5
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/.idea
/jspm_packages
/node_modules
/bundled/build.*
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ karma start
```

# Production version

Bundle it (and minify, if you want):

```bash
jspm bundle-sfx --minify app
```

It creates a `build.js` file. To run it wee need a modified `index.html` (it is a *manually*-modified file, stored in `bundled/index.html`).

On the server, the structure of files should look as follows:

```bash
jspm bundle --minify app.js
css\
favicon.ico
build.js
index.html
```
156 changes: 156 additions & 0 deletions bundled/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
<!DOCTYPE html>
<html>
<head>
<title>Quantum game prototype</title>
<meta name="description" content="Quantum Game - play with photons, superposition and entanglement. With true quantum mechanics underneath.">
<meta name="keywords" content="quantum, game, optics, educational">
<meta name="author" content="Piotr Migdał, Patryk Hes">
<meta charset="utf-8">

<link rel="icon" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="css/interface.css">
<link rel="stylesheet" type="text/css" href="css/tiles.css">
<link rel="stylesheet" type="text/css" href="css/katex.min.css">
</head>
<body>

<div id="game">
<svg preserveAspectRatio="xMidYMid meet">
<defs>
<g id="hitbox">
<rect class="hitbox" x="-50" y="-50" width="100" height="100"/>
</g>
<g id="particle">
<circle r="10" class="particle" />
</g>
<g id="polarizing-splitter">
<rect class="glass glass-edge" x="-25" y="-25" width="50" height="50"/>
<line class="glass-edge" x1="-25" y1="25" x2="25" y2="-25"/>
</g>
<g id="thin-splitter">
<rect class="glass glass-edge" x="-25" y="-2.5" width="50" height="5"/>
</g>
<g id="thin-mirror">
<rect class="metal" x="-25" y="-0.025" width="50" height="5"/>
</g>
<g id="source">
<rect class="metal metal-edge" x="-20" y="-12.5" width="40" height="25"/>
<g transform="translate(20, 0)">
<line class="beam" x1="-8" y1="0" x2="8" y2="0"/>
<line class="beam" x1="0" y1="-8" x2="0" y2="8"/>
<line class="beam" x1="-5.6" y1="-5.6" x2="5.6" y2="5.6"/>
<line class="beam" x1="-5.6" y1="5.6" x2="5.6" y2="-5.6"/>
</g>
</g>
<pattern id="polarizing-stripes" width="4" height="4" patternUnits="userSpaceOnUse">
<line x1="0" y1="0" x2="0" y2="4" style="stroke:#555; stroke-width:3" />
</pattern>
<g id="polarizer">
<circle class="polarizer" r="25"/>
</g>
<pattern id="phase-stripes" width="4" height="4" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="2" height="4" style="fill:steelblue;opacity:0.75" />
<rect x="2" y="0" width="2" height="4" style="fill:steelblue;opacity:0.25" />
</pattern>
<g id="phase-plate">
<polygon class="phase-plate glass-edge"
points="25,-10
10,-25
-10,-25
-25,-10
-25,10
-10,25
10,25
25,10" />
</g>
<!-- the one below needs color tweaking and maybe some parameter simplification -->
<g id="sugar-solution" transform="matrix(1.6130935,0,0,1.6130935,-30.427405,-1669.6471)">
<path
style="fill:none;stroke:#6b00ff;stroke-width:1.53604078;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.771594,1048.8818 -22.3481457,-35.3551 -7.05587697,6.0475" />
<path
style="fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:#ffa900;stroke-width:10.07999992;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
transform="matrix(-0.15238501,0,0,-0.15238501,47.953045,1036.3512)"
d="m 104.69031,55.601113 a 42.426407,42.426407 0 1 1 -4.52422,-0.259186" />
<rect
style="fill:none;stroke:#4682b4;stroke-width:1.61117244;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="1021.4146"
x="5.6080351"
height="29.954563"
width="26.961039" />
<rect
style="opacity:0.5;fill:#4682b4;fill-opacity:1;stroke:none"
y="1025.86"
x="5.7755208"
height="25.07954"
width="26.793215" />
</g>
<g id="mine">
<circle r="20"/>
<rect x="-30" y="-4" width="60" height="8"/>
<rect x="-30" y="-4" width="60" height="8" transform="rotate(45)"/>
<rect x="-30" y="-4" width="60" height="8" transform="rotate(90)"/>
<rect x="-30" y="-4" width="60" height="8" transform="rotate(135)"/>
</g>
<g id="mine-absorbed">
<circle r="40" fill="yellow"/>
<circle r="20" fill="red"/>
</g>
<g id="glass">
<rect class="glass glass-edge" x="-20" y="-20" width="40" height="40" rx="5" ry="5"/>
</g>
<g id="vacuum-jar">
<rect class="glass-edge" x="-20" y="-20" width="40" height="40" rx="5" ry="5" style="fill:none"/>
<line x1="-50" y1="-50" x2="-20" y2="-20" style="stroke:#555; stroke-width:1"/>
<line x1="50" y1="-50" x2="20" y2="-20" style="stroke:#555; stroke-width:1"/>
<line x1="-50" y1="50" x2="-20" y2="20" style="stroke:#555; stroke-width:1"/>
<line x1="50" y1="50" x2="20" y2="20" style="stroke:#555; stroke-width:1"/>
</g>
<g id="corner-cube">
<rect x="-25" y="-25" width="50" height="50" style="fill:lightgrey"/>
<line x1="-25" y1="-25" x2="25" y2="25" style="stroke:#555; stroke-width:3"/>
<line x1="25" y1="-25" x2="-25" y2="25" style="stroke:#555; stroke-width:3"/>
</g>
<g id="absorber">
<rect class="absorber" x="-20" y="-20" width="40" height="40" rx="5" ry="5"/>
</g>
<g id="rock">
<path
d="m -17.98771,-19.95 c -0.142537,-0.011 -0.301328,-0.1003 -0.427611,-0.037 -0.173624,0.09 -0.242706,0.3003 -0.36863,0.4469 -0.181311,0.2109 -0.360845,0.4237 -0.552945,0.6256 -0.176802,0.1856 -0.375579,0.3508 -0.552946,0.536 -0.257545,0.2689 -0.67616,0.5682 -0.73726,0.9829 -0.01738,0.118 0,0.2383 0,0.3575 0,0.089 0,0.1787 0,0.268 0,0.03 0,0.06 0,0.09 0,0.028 -0.02172,0.068 0,0.089 3.38e-4,4e-4 0.27469,-6e-4 0.276472,0 0.251396,0.073 0.502505,0.1542 0.737261,0.2681 0.320423,0.1553 0.604232,0.3749 0.921575,0.5361 0.328805,0.167 0.685688,0.2784 1.013734,0.4469 0.195776,0.1002 0.378088,0.2254 0.552945,0.3573 0.245378,0.1851 0.441115,0.3637 0.276473,0.7148 -0.117836,0.2514 -0.727528,0.776 -0.921576,0.9831 -1.886607,2.0122 1.353287,-1.3169 -1.105891,1.251 -0.177367,0.1852 -0.378572,0.3482 -0.552945,0.536 -0.10275,0.1111 -0.191273,0.2336 -0.276473,0.3575 -0.01144,0.016 -0.178409,0.3517 -0.184315,0.3574 -0.04857,0.047 -0.135744,0.043 -0.184315,0.09 -0.04857,0.047 -0.04359,0.1317 -0.09216,0.1786 -0.442667,0.4293 -0.43537,0.1669 -1.013733,0.6257 -0.152237,0.1207 -0.242707,0.3002 -0.36863,0.4467 -0.02781,0.032 -0.07842,0.049 -0.09216,0.09 -0.01943,0.056 0,0.1191 0,0.1787 0,0.06 0,0.1191 0,0.1787 0,0.2143 -0.05011,0.4416 0.09216,0.6255 0.05213,0.068 0.114805,0.1281 0.184315,0.1788 0.211791,0.1539 0.184315,-3e-4 0.184315,0.1787 0,0.029 0.0114,0.062 0,0.089 -0.05102,0.1236 -0.09491,0.2563 -0.184315,0.3574 -0.199918,0.2262 -0.540602,0.3074 -0.737261,0.5362 -0.06219,0.072 -0.05608,0.1806 -0.09216,0.2681 -0.02551,0.062 -0.07044,0.1158 -0.09216,0.1787 -0.0097,0.027 0,0.059 0,0.09 0,0.307 -0.01943,0.068 0.09216,0.4467 0.149194,0.5063 0.163606,0.5291 -0.184315,1.1616 -0.112906,0.2053 -0.312557,0.3533 -0.460788,0.5363 -0.541132,0.6678 -0.653866,0.67 -0.73726,1.519 -0.03495,0.3558 -0.111771,0.73172 0,1.07232 0.223038,0.6797 1.249283,1.4224 1.750993,1.7872 0.354431,0.2578 0.772471,0.432 1.105891,0.7148 0.16671,0.1415 0.251225,0.3541 0.36863,0.5362 0.03641,0.056 0.0755,0.1145 0.09216,0.1787 0.02235,0.087 0,0.1786 0,0.2681 0,0.1489 0.03725,0.3023 0,0.4469 -0.02686,0.1044 -0.116316,0.1832 -0.184315,0.268 -0.791105,0.9862 -0.104283,0.1429 -1.382363,1.0722 -0.208529,0.1517 -0.368631,0.3576 -0.552946,0.5363 -0.122876,0.1191 -0.272237,0.2171 -0.36863,0.3573 -0.222475,0.3235 -0.353763,1.055 -0.276473,1.4298 0.05715,0.2771 0.112301,0.5707 0.276473,0.8043 0.912128,1.2971 2.064031,1.7644 3.40983,2.6807 0.611135,0.4159 2.384974,1.581 3.041199,2.3233 0.107059,0.121 0.09216,0.3773 0.09216,0.5362 0,0.1488 0,0.2978 0,0.4468 0,0.1489 0.02748,0.3002 0,0.4468 -0.03476,0.1852 -0.14956,0.3508 -0.184315,0.5361 -0.02748,0.1466 0.02525,0.2999 0,0.4468 -0.0071,0.042 -0.07273,0.051 -0.09216,0.089 -0.01374,0.026 0.0074,0.061 0,0.09 -0.05646,0.2189 -0.225404,0.475 -0.09216,0.715 0.19346,0.3481 1.188578,1.2253 1.474522,1.4296 0.705249,0.5039 0.889496,0.2642 1.105891,0.8935 0.01944,0.056 0,0.1193 0,0.1787 0,0.06 0,0.1193 0,0.1787 0,0.089 0,0.1789 0,0.2682 0,0.059 0.01944,0.1223 0,0.1787 -0.04345,0.1263 -0.154514,0.2275 -0.184316,0.3575 -0.03332,0.1453 0,0.2978 0,0.4468 0,0.5805 -0.04546,1.332 0.184316,1.8765 0.141977,0.3365 0.415824,0.6059 0.645102,0.8936 2.511972,3.152 -0.408818,-0.7158 1.566678,1.9658 0.08927,0.1212 0.200268,0.2283 0.276474,0.3575 0.315059,0.5346 -0.09166,0 0.09215,0.5362 0.03503,0.1012 0.125612,0.1768 0.184316,0.268 0.09494,0.1473 0.189483,0.295 0.276471,0.4468 0.06672,0.1169 0.07176,0.2811 0.184317,0.3574 0.215019,0.1459 0.489235,0.1849 0.737259,0.2681 1.5210227,0.5105 1.7106667,0.5565 3.2255147,0.983 0.429542,0.1208 0.868428,0.213 1.290207,0.3573 0.428169,0.1466 0.798584,0.828 1.013732,1.1618 0.160045,0.2483 0.386453,0.6054 0.737261,0.6254 0.871964,0.05 1.639264,-0.703 2.211781,-1.1617 0.318627,-0.2552 0.67360597,-0.4835 0.92157597,-0.8041 0.134183,-0.1735 0.107886,-0.4217 0.184316,-0.6255 0.04694,-0.1252 0.140871,-0.2311 0.184315,-0.3575 0.04952,-0.1441 0.03863,-0.304 0.09215,-0.4468 0.751951,-2.0049 -0.12237,0.7134 0.460787,-0.9829 0.135078,-0.3929 0.0251,-0.3493 0.276473,-0.715 0.04819,-0.07 0.145458,-0.1033 0.184316,-0.1787 0.02746,-0.054 -0.05112,-0.1456 0,-0.1787 0.07668,-0.049 0.186508,-0.02 0.27647103,0 0.465535,0.1002 0.934185,0.1994 1.382364,0.3574 0.568667,0.2007 1.086603,0.5243 1.658837,0.715 0.655413,0.2185 1.377142,0.2146 2.027465,0.4467 2.593153,0.9264 -0.60909,0.024 2.119625,0.7149 0.33891,0.086 0.673939,0.1857 1.013733,0.2681 0.0298,0.012 0.06144,0 0.09215,0 0.06144,0 0.129363,0.026 0.184315,0 0.07771,-0.036 0.106596,-0.141 0.184315,-0.1787 0.113286,-0.055 0.257912,-0.028 0.3686313,-0.089 0.171945,-0.092 0.27706,-0.2892 0.460787,-0.3573 0.871256,-0.323 1.834018,-0.4081 2.67257,-0.8041 0.390552,-0.1846 0.587833,-0.624 0.921576,-0.8938 0.222633,-0.1798 0.512963,-0.2688 0.737259,-0.4467 0.377506,-0.2995 0.247558,-0.4802 0.460789,-0.8937 0.06869,-0.133 0.184315,-0.2382 0.276472,-0.3573 0.760728,-0.9834 -0.452108,0.5332 1.013733,-0.9829 0.239552,-0.2478 0.434952,-0.5326 0.645103,-0.8043 0.06646,-0.086 0.09571,-0.2035 0.184315,-0.2682 0.04916,-0.035 0.127271,0.022 0.184316,0 0.102839,-0.041 0.16902,-0.1526 0.276473,-0.1787 0.298019,-0.072 0.620348,0.059 0.921575,0 0.46763,-0.091 0.916829,-0.257 1.382364,-0.3573 0.08996,-0.02 0.184315,0 0.276473,0 0.170498,0 0.261572,0.011 0.460787,-0.089 0.423751,-0.2054 -5.26e-4,-0.1332 0.184315,-0.4468 0.08621,-0.1463 0.260074,-0.2258 0.368629,-0.3574 0.138383,-0.1678 0.245755,-0.3575 0.368632,-0.5361 0.122876,-0.1787 0.262554,-0.3476 0.36863,-0.5362 0.393656,-0.6998 0.368631,-1.5474 0.368631,-2.3233 0,-0.3187 0.02176,-0.6666 0,-0.9829 -0.02054,-0.2987 -0.09215,-0.5943 -0.09215,-0.8936 0,-0.7462 0.108898,-1.0143 0.36863,-1.6978 0.114382,-0.3012 0.212934,-0.6106 0.368632,-0.8936 0.09256,-0.1683 0.25061,-0.2943 0.368629,-0.4469 1.317631,-1.7885 0.0087,-0.084 0.645102,-0.8042 0.128011,-0.1448 0.213368,-0.3298 0.368631,-0.4467 0.130582,-0.098 0.337827,-0.071 0.460788,-0.1788 0.595891,-0.5201 0.383862,-0.6177 0.645103,-1.2511 0.04113,-0.099 0.129364,-0.1747 0.184315,-0.268 0.06816,-0.1157 0.122877,-0.2382 0.184315,-0.3575 0.06144,-0.119 0.140872,-0.2309 0.184316,-0.3575 0.04953,-0.1439 0.05094,-0.3002 0.09215,-0.4467 0.114371,-0.4065 0.276473,-0.6401 0.276473,-1.0723 0,-0.5207 -0.297061,-0.7531 -0.645102,-1.1616 -1.764186,-2.0708 -0.571728,-0.8204 -3.133358,-2.4127 -0.574225,-0.3568 -1.094132,-0.7907 -1.658835,-1.1618 -0.388219,-0.2548 -0.811056,-0.458 -1.198049,-0.7148 -0.327061,-0.2169 -0.489268,-0.385 -0.737261,-0.6254 -0.09215,-0.089 -0.174701,-0.1892 -0.276474,-0.2681 -0.05364,-0.043 -0.135743,-0.043 -0.184314,-0.089 -0.0992,-0.095 -0.166956,-0.469 -0.184314,-0.5363 -0.129411,-0.50192 -0.09215,-0.2347 -0.09215,-0.80412 0,-0.3863 -0.05519,-0.9832 0.09215,-1.3405 0.06506,-0.1577 0.579496,-0.8875 0.645102,-0.9828 0.122876,-0.1788 0.228356,-0.37 0.36863,-0.5363 0.137551,-0.163 0.336223,-0.2742 0.460788,-0.4468 0.09488,-0.1313 0.103977,-0.3065 0.184316,-0.4467 0.07459,-0.1302 0.21409,-0.2213 0.276472,-0.3576 0.06362,-0.1386 0.02211,-0.3107 0.09215,-0.4467 0.05828,-0.1133 0.209418,-0.1597 0.276474,-0.2681 0.03162,-0.051 0,-0.1191 0,-0.1787 0,-0.059 0,-0.1191 0,-0.1786 0,-0.3842 0.06869,-0.4889 -0.184316,-0.8044 -0.133358,-0.1662 -0.300665,-0.3044 -0.460787,-0.4467 -0.208776,-0.1856 -0.418529,-0.3714 -0.645103,-0.5361 -0.231027,-0.168 -0.858255,-0.4827 -1.105891,-0.5362 -0.331225,-0.071 -0.675356,-0.066 -1.013732,-0.089 -0.570253,-0.042 -1.652677,-0.073 -2.303939,-0.1788 -0.09582,-0.015 -0.181218,-0.071 -0.276474,-0.09 -0.06025,-0.011 -0.123712,0.011 -0.184315,0 -0.124936,-0.02 -0.247313,-0.054 -0.36863,-0.089 -0.700976,-0.204 -1.279761,-0.4726 -1.935297,-0.8042 -0.402122,-0.2034 -0.813427,-0.3924 -1.198048,-0.6257 -0.64636,-0.3915 -1.4946603,-1.0399 -2.0274673,-1.6083 -0.161392,-0.1721 -0.308859,-0.3562 -0.460787,-0.5361 -0.124558,-0.1476 -0.259522,-0.2881 -0.368631,-0.4468 -0.137381,-0.1999 -0.243839,-0.4181 -0.36863,-0.6256 -0.09025,-0.15 -0.180307,-0.3001 -0.276473,-0.4468 -0.277318,-0.4225 -0.423079,-0.5212 -0.552945,-0.9829 -0.246794,-0.8774 -0.0037,-0.2078 -0.09215,-0.8935 -0.0157,-0.1219 -0.07133,-0.2364 -0.09215,-0.3574 -0.02491,-0.145 0.0249,-0.302 0,-0.4469 -0.01597,-0.093 -0.06861,-0.1767 -0.09215,-0.268 -0.03783,-0.1468 0.09833,-0.082 -0.09215,-0.2682 -0.04857,-0.047 -0.127161,-0.053 -0.184315,-0.09 -0.03615,-0.023 -0.04956,-0.08 -0.09215,-0.089 -0.120495,-0.023 -0.245753,0 -0.36863,0 -0.184315,-0.028 -0.371667,-0.046 -0.552945,-0.089 -1.577489,-0.3823 1.002265,-0.1391 -2.488254,-0.4468 -0.367117,-0.033 -0.737679,0.016 -1.105892,0 -0.277859,-0.012 -0.551671,-0.075 -0.829417,-0.09 -0.27604803,-0.015 -0.55294503,0 -0.82941903,0 -0.276473,0 -0.552944,0 -0.829418,0 -0.122876,0 -0.245754,0 -0.368631,0 -0.06144,0 -0.123712,-0.011 -0.184315,0 -0.69525997,0.1122 -0.04563,0.045 -0.73725997,0.2682 -0.453923,0.1465 0.153174,-0.2976 -0.460788,0.1787 -0.211553,0.1641 -0.177133,0.2474 -0.460788,0.3573 -0.05704,0.022 -0.122876,0 -0.184314,0 -0.06144,0 -0.122878,0 -0.184316,0 -0.36863,0 -0.737259,0 -1.10589,0 -0.522227,0 -1.044453,0 -1.566679,0 -0.184316,0 -0.369545,0.018 -0.552944,0 -0.126048,-0.012 -0.250054,-0.047 -0.368647,-0.09 -0.335391,-0.1219 -0.476964,-0.21 -0.645105,-0.536 -0.05664,-0.1099 -0.02931,-0.2509 -0.09215,-0.3575 -0.03841,-0.066 -0.383991,-0.3537 -0.460789,-0.4467 -0.06918,-0.083 -0.105991,-0.1922 -0.184314,-0.2682 -0.07831,-0.076 -0.187864,-0.1145 -0.276472,-0.1787 -0.03475,-0.025 -0.05602,-0.067 -0.09215,-0.09 -0.17799,-0.1145 -0.250972,-0.091 -0.460789,-0.1787 -0.669684,-0.2782 -0.07574,-0.062 -0.737259,-0.4467 -0.02634,-0.015 -0.06203,0 -0.09215,0 -0.1242,-0.024 -0.246846,-0.056 -0.3686317,-0.09 -0.09341,-0.025 -0.180651,-0.073 -0.276472,-0.089 -0.0909,-0.015 -0.185027,0.012 -0.276473,0 -0.155428,-0.019 -0.305108,-0.072 -0.460787,-0.09 -0.122125,-0.013 -0.245754,0 -0.368631,0 -0.307192,0 -0.614384,0 -0.921576,0 -0.307191,0 -0.614383,0 -0.921575,0 -0.09215,0 -0.184315,0 -0.276472,0 -0.06144,0 -0.12603,-0.019 -0.184316,0 -0.04121,0.013 -0.05602,0.067 -0.09215,0.09 -0.05715,0.037 -0.129363,0.049 -0.184315,0.089 -0.0695,0.05 -0.112019,0.132 -0.184314,0.1788 -0.02557,0.016 -0.06144,0 -0.09215,0 -0.03071,0 -0.06144,0 -0.09215,0 -0.276472,0 -0.552945,0 -0.829418,0 -0.245754,0 -0.491507,0 -0.737261,0 -0.0415,0 -0.248426,-0.014 -0.276472,0 -0.03886,0.019 -0.05601,0.067 -0.09216,0.09 -0.05715,0.038 -0.125414,0.055 -0.184315,0.089 -0.09498,0.055 -0.181498,0.1235 -0.276473,0.1787 -0.0589,0.034 -0.117676,0.073 -0.184315,0.09 -0.0596,0.014 -0.133196,-0.032 -0.184315,0 -0.05715,0.038 -0.05405,0.1233 -0.09216,0.1787 -0.0482,0.07 -0.145458,0.1033 -0.184315,0.1786 -0.01374,0.026 0.01374,0.064 0,0.09 -0.01943,0.037 -0.07273,0.052 -0.09216,0.089 -0.01374,0.026 0.01374,0.064 0,0.09 -0.01943,0.037 -0.06155,0.06 -0.09216,0.089 -0.134066,0.131 -0.267887,0.2622 -0.401822,0.3932"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:1;stroke-dasharray:none" />
</g>
<g id="detector">
<path d="M -25,25
A 25 25 0 0 0 -25 -25
A 5 5 0 0 1 -25 -35
A 35 35 0 0 1 -25 35
A 5 5 0 0 1 -25 25"
stroke="black" stroke-width="2" fill="red"/>
<path d="M 10 0
c 0 -15 15 -15 15 0
c 5 15 15 -15 15 5"
stroke="black" stroke-width="2" fill="none"/>
</g>
<g id="detector-absorbed">
<path d="M -25,25
A 25 25 0 0 0 -25 -25
A 5 5 0 0 1 -25 -35
A 35 35 0 0 1 -25 35
A 5 5 0 0 1 -25 25"
stroke="black" stroke-width="2" fill="green"/>
<path d="M 10 0
c 0 -15 15 -15 15 0
c 5 15 15 -15 15 5"
stroke="black" stroke-width="2" fill="none"/>
</g>
</defs>
</svg>
</div>
<button id="clip-board">clip board</button>
<button id="select-level">select level</button>
<button id="play"></button>
<div id="helper"></div>

<script src="build.js"></script>
</body>
</html>

0 comments on commit 46ab6f5

Please sign in to comment.