diff --git a/hpc_index.html b/hpc_index.html index 28207e2..8e46a62 100644 --- a/hpc_index.html +++ b/hpc_index.html @@ -101,7 +101,7 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 5%1/19
0%0/53
4%39/852
  module reanimate-0.4.3.0-inplace/Reanimate.Scene -27%40/144
55%15/27
32%545/1694
+27%40/144
55%15/27
32%545/1696
  module reanimate-0.4.3.0-inplace/Reanimate.Svg 38%5/13
18%15/80
41%323/777
@@ -125,5 +125,5 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 100%6/6
50%1/2
95%43/45
  Program Coverage Total -30%248/814
15%131/830
29%4682/15818
+30%248/814
15%131/830
29%4682/15820
diff --git a/hpc_index_alt.html b/hpc_index_alt.html index 633e1f3..ba71c3a 100644 --- a/hpc_index_alt.html +++ b/hpc_index_alt.html @@ -23,7 +23,7 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 90%28/31
57%8/14
87%298/341
  module reanimate-0.4.3.0-inplace/Reanimate.Scene -27%40/144
55%15/27
32%545/1694
+27%40/144
55%15/27
32%545/1696
  module reanimate-0.4.3.0-inplace/Reanimate.ColorComponents 75%9/12
50%1/2
81%135/166
@@ -125,5 +125,5 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 15%3/20
- 0/0 14%7/49
  Program Coverage Total -30%248/814
15%131/830
29%4682/15818
+30%248/814
15%131/830
29%4682/15820
diff --git a/hpc_index_exp.html b/hpc_index_exp.html index f7add01..bd23137 100644 --- a/hpc_index_exp.html +++ b/hpc_index_exp.html @@ -50,7 +50,7 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 33%5/15
5%1/20
40%133/325
  module reanimate-0.4.3.0-inplace/Reanimate.Scene -27%40/144
55%15/27
32%545/1694
+27%40/144
55%15/27
32%545/1696
  module reanimate-0.4.3.0-inplace/Geom2D.CubicBezier.Linear 20%20/99
5%2/36
28%102/356
@@ -125,5 +125,5 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 0%0/1
0%0/4
0%0/61
  Program Coverage Total -30%248/814
15%131/830
29%4682/15818
+30%248/814
15%131/830
29%4682/15820
diff --git a/hpc_index_fun.html b/hpc_index_fun.html index 5bbe190..b61bbda 100644 --- a/hpc_index_fun.html +++ b/hpc_index_fun.html @@ -65,7 +65,7 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 33%1/3
0%0/14
21%28/128
  module reanimate-0.4.3.0-inplace/Reanimate.Scene -27%40/144
55%15/27
32%545/1694
+27%40/144
55%15/27
32%545/1696
  module reanimate-0.4.3.0-inplace/Reanimate.PolyShape 22%8/35
27%13/48
18%127/691
@@ -125,5 +125,5 @@ table.dashboard { border-collapse: collapse ; border: solid 1px black } 0%0/1
0%0/4
0%0/61
  Program Coverage Total -30%248/814
15%131/830
29%4682/15818
+30%248/814
15%131/830
29%4682/15820
diff --git a/playground/snippets.js b/playground/snippets.js index 1aa2c99..8cb51f6 100644 --- a/playground/snippets.js +++ b/playground/snippets.js @@ -9,4 +9,4 @@ const snippets = [{"title": "Hello World","url": "https://reanimate.clozecards.c ,{"title": "Object Positions","url": "https://reanimate.clozecards.com/Mf4zcImo+I7/195.svg","code": "env =\n addStatic (mkBackground \"white\") .\n mapA (withStrokeColor \"black\")\n\nanimation :: Animation\nanimation = env $\n sceneAnimation $ do\n -- Configure objects\n txt <- newText \"Center\"\n top <- newText \"Top\"\n oModifyS top $ \n oTopY .= screenTop\n topR <- newText \"Top right\"\n oModifyS topR $ do\n oTopY .= screenTop\n oRightX .= screenRight\n botR <- newText \"Bottom right\"\n oModifyS botR $ do\n oTranslate .= (0, screenBottom+0.5)\n oRightX .= screenRight\n botL <- newText \"Bottom left\"\n oModifyS botL $ do\n oTranslate .= (0, screenBottom+0.5)\n oLeftX .= screenLeft\n topL <- newText \"Top left\"\n oModifyS topL $ do\n oTopY .= screenTop\n oLeftX .= screenLeft\n -- Show objects\n oShow txt\n wait 1\n switchTo txt top\n switchTo top topR\n switchTo topR botR\n switchTo botR botL\n switchTo botL topL\n switchTo topL txt\n\nswitchTo src dst = do\n fork $ oHideWith src oFadeOut\n oShowWith dst oFadeIn\n wait 1\n\nnewText txt =\n newObject $ scale 1.5 $ centerX $ latex txt\n"} ,{"title": "Camera","url": "https://reanimate.clozecards.com/Hcx00P+aeph/150.svg","code": "animation :: Animation\nanimation = docEnv $ mapA (withFillOpacity 1) $ sceneAnimation $ do\n cam <- newObject Camera\n\n txt <- newObject $ center $ latex \"Fixed (non-cam)\"\n oModifyS txt $ do\n oTopY .= screenTop \n oZIndex .= 2\n\n circle <- newObject $ withFillColor \"blue\" $ mkCircle 1\n cameraAttach cam circle\n circleRight <- oRead circle oRightX\n\n box <- newObject $ withFillColor \"green\" $ mkRect 2 2\n cameraAttach cam box\n oModify box $ oLeftX .~ circleRight\n boxCenter <- oRead box oCenterXY\n\n small <- newObject $ center $ latex \"This text is very small\"\n cameraAttach cam small\n oModifyS small $ do\n oCenterXY .= boxCenter\n oScale .= 0.1\n \n oShow txt\n oShow small\n oShow circle\n oShow box\n\n wait 1\n\n cameraFocus cam boxCenter\n waitOn $ do\n fork $ cameraPan cam 3 boxCenter\n fork $ cameraZoom cam 3 15\n \n wait 2\n cameraZoom cam 3 1\n cameraPan cam 1 (0,0)\n"} ]; -const playgroundVersion = "2020-09-01 (0191a)"; +const playgroundVersion = "2020-09-01 (51263)"; diff --git a/reanimate-0.4.3.0-inplace/Reanimate.Scene.hs.html b/reanimate-0.4.3.0-inplace/Reanimate.Scene.hs.html index 1e3981b..5a35d91 100644 --- a/reanimate-0.4.3.0-inplace/Reanimate.Scene.hs.html +++ b/reanimate-0.4.3.0-inplace/Reanimate.Scene.hs.html @@ -1041,7 +1041,7 @@ span.spaces { background: white } 1022 scale _oScale $ 1023 uncurry translate _oScaleOrigin $ 1024 withGroupOpacity _oOpacity $ - 1025 _oContext _oSVG + 1025 mkGroup [_oContext _oSVG] 1026 else None 1027 spriteModify sprite $ do 1028 ~ObjectData{_oZIndex=z} <- unVar ref