fastled 1.0.8__tar.gz → 1.0.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fastled-1.0.8 → fastled-1.0.11}/.gitignore +1 -0
- {fastled-1.0.8 → fastled-1.0.11}/PKG-INFO +6 -1
- {fastled-1.0.8 → fastled-1.0.11}/README.md +4 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/SdCard/SdCard.ino +17 -24
- fastled-1.0.11/examples/SdCard/screenmap.json.h +4 -0
- {fastled-1.0.8 → fastled-1.0.11}/pyproject.toml +1 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/__init__.py +1 -1
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/app.py +409 -376
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/compile_server.py +216 -251
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/docker_manager.py +3 -1
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/filewatcher.py +196 -146
- fastled-1.0.11/src/fastled/keyboard.py +89 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/open_browser.py +5 -1
- fastled-1.0.11/src/fastled/util.py +10 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/web_compile.py +277 -227
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled.egg-info/PKG-INFO +6 -1
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled.egg-info/SOURCES.txt +6 -1
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled.egg-info/requires.txt +3 -0
- fastled-1.0.11/tests/test_embedded_data.py +65 -0
- fastled-1.0.11/tests/test_filechanger.py +54 -0
- fastled-1.0.11/tests/test_ino/embedded/data/bigdata.dat +0 -0
- fastled-1.0.11/tests/test_ino/wasm/wasm.ino +134 -0
- fastled-1.0.8/src/fastled/check_cpp_syntax.py +0 -34
- fastled-1.0.8/tests/test_filechanger.py +0 -51
- {fastled-1.0.8 → fastled-1.0.11}/.aiderignore +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.github/workflows/build_multi_docker_image.yml +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.github/workflows/lint.yml +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.github/workflows/test_macos.yml +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.github/workflows/test_ubuntu.yml +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.github/workflows/test_win.yml +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.pylintrc +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.vscode/launch.json +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.vscode/settings.json +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/.vscode/tasks.json +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/LICENSE +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/MANIFEST.in +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/clean +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/docs/fastled.js +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/docs/fastled.wasm +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/docs/index.css +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/docs/index.html +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/docs/index.js +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Blink/Blink.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/Chromancer.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/detail.h +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/gary_woos_wled_port/gary_woos_wled_ledmap.h +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/gary_woos_wled_port/presets.json +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/gary_woos_wled_port/presets.min.json +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/gen.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/mapping.h +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/net.h +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/output.json +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/ripple.h +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Chromancer/screenmap.json.h +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/ColorPalette/ColorPalette.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/ColorTemperature/ColorTemperature.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Cylon/Cylon.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/DemoReel100/DemoReel100.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Esp32Rmt51/Esp32Rmt51.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/EspI2SDemo/EspI2SDemo.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Fire2012/Fire2012.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Fire2012WithPalette/Fire2012WithPalette.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/FirstLight/FirstLight.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/FxEngine/FxEngine.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Noise/Noise.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/NoisePlayground/NoisePlayground.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/NoisePlusPalette/NoisePlusPalette.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/OctoWS2811/OctoWS2811.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Pacifica/Pacifica.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Pride2015/Pride2015.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/TwinkleFox/TwinkleFox.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Video/Gfx2Video/Gfx2Video.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/WasmScreenCoords/WasmScreenCoords.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/Water/Water.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/XYMatrix/XYMatrix.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/examples/wasm/wasm.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/install +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/lint +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/requirements.testing.txt +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/setup.cfg +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/setup.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/assets/example.txt +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/build_mode.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/cli.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/paths.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled/sketch.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled.egg-info/dependency_links.txt +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled.egg-info/entry_points.txt +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/src/fastled.egg-info/top_level.txt +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/test +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/tests/test_bad_ino.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/tests/test_cli.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/tests/test_compile_server.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/tests/test_ino/bad/bad.ino +0 -0
- {fastled-1.0.8/tests/test_ino/wasm → fastled-1.0.11/tests/test_ino/embedded}/wasm.ino +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/tests/test_webcompile.py +0 -0
- {fastled-1.0.8 → fastled-1.0.11}/upload_package.sh +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fastled
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.11
|
4
4
|
Summary: FastLED Wasm Compiler
|
5
5
|
Home-page: https://github.com/zackees/fastled-wasm
|
6
6
|
Maintainer: Zachary Vorhies
|
@@ -16,11 +16,13 @@ Requires-Dist: watchdog
|
|
16
16
|
Requires-Dist: livereload
|
17
17
|
Requires-Dist: download
|
18
18
|
Requires-Dist: filelock
|
19
|
+
Requires-Dist: windows-curses; platform_system == "Windows"
|
19
20
|
|
20
21
|
# FastLED wasm compiler
|
21
22
|
|
22
23
|
Compiles an Arduino/Platformio sketch into a wasm binary that can be run directly in the web browser.
|
23
24
|
|
25
|
+
|
24
26
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/lint.yml)
|
25
27
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/build_multi_docker_image.yml)
|
26
28
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/test_macos.yml)
|
@@ -92,6 +94,9 @@ provide shims for most of the common api points.
|
|
92
94
|
|
93
95
|
# Revisions
|
94
96
|
|
97
|
+
* 1.1.11 - Dev improvement: FastLED src code volume mapped into docker will just in time update without having to manually trigger it.
|
98
|
+
* 1.1.10 - Swap large assets with embedded placeholders. This helps video sketches upload and compile instantly. Assets are re-added on after compile artifacts are returned.
|
99
|
+
* 1.1.9 - Remove auto server and instead tell the user corrective action to take.
|
95
100
|
* 1.1.8 - Program now knows it's own version which will be displayed with help file. Use `--version` to get it directly.
|
96
101
|
* 1.1.7 - Sketch cache re-enabled, but selectively invalidated on cpp/h updates. Cleaned up deprecated args. Fixed double thread running for containers that was causing slowdown.
|
97
102
|
* 1.1.6 - Use the fast src volume map allow quick updates to fastled when developing on the source code.
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
Compiles an Arduino/Platformio sketch into a wasm binary that can be run directly in the web browser.
|
4
4
|
|
5
|
+
|
5
6
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/lint.yml)
|
6
7
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/build_multi_docker_image.yml)
|
7
8
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/test_macos.yml)
|
@@ -73,6 +74,9 @@ provide shims for most of the common api points.
|
|
73
74
|
|
74
75
|
# Revisions
|
75
76
|
|
77
|
+
* 1.1.11 - Dev improvement: FastLED src code volume mapped into docker will just in time update without having to manually trigger it.
|
78
|
+
* 1.1.10 - Swap large assets with embedded placeholders. This helps video sketches upload and compile instantly. Assets are re-added on after compile artifacts are returned.
|
79
|
+
* 1.1.9 - Remove auto server and instead tell the user corrective action to take.
|
76
80
|
* 1.1.8 - Program now knows it's own version which will be displayed with help file. Use `--version` to get it directly.
|
77
81
|
* 1.1.7 - Sketch cache re-enabled, but selectively invalidated on cpp/h updates. Cleaned up deprecated args. Fixed double thread running for containers that was causing slowdown.
|
78
82
|
* 1.1.6 - Use the fast src volume map allow quick updates to fastled when developing on the source code.
|
@@ -21,9 +21,13 @@ void loop() {
|
|
21
21
|
#include "fx/video.h"
|
22
22
|
#include "file_system.h"
|
23
23
|
#include "ui.h"
|
24
|
-
|
24
|
+
#include "screenmap.h"
|
25
25
|
#include "file_system.h"
|
26
26
|
|
27
|
+
|
28
|
+
#include "screenmap.json.h" // const char JSON_SCREEN_MAP[] = { ... }
|
29
|
+
|
30
|
+
|
27
31
|
#define LED_PIN 2
|
28
32
|
#define LED_TYPE WS2811
|
29
33
|
#define COLOR_ORDER GRB
|
@@ -38,8 +42,13 @@ void loop() {
|
|
38
42
|
#define NUM_LEDS (MATRIX_WIDTH * MATRIX_HEIGHT)
|
39
43
|
#define IS_SERPINTINE true
|
40
44
|
|
45
|
+
|
46
|
+
Title title("SDCard Demo - Mapped Video");
|
47
|
+
Description description("Video data is streamed off of a SD card and displayed on a LED strip. The video data is mapped to the LED strip using a ScreenMap.");
|
48
|
+
|
49
|
+
|
41
50
|
CRGB leds[NUM_LEDS];
|
42
|
-
|
51
|
+
ScreenMap screenMap;
|
43
52
|
|
44
53
|
FileSystem filesystem;
|
45
54
|
Video video;
|
@@ -51,9 +60,14 @@ void setup() {
|
|
51
60
|
if (!filesystem.beginSd(CHIP_SELECT_PIN)) {
|
52
61
|
Serial.println("Failed to initialize file system.");
|
53
62
|
}
|
63
|
+
// JSON_SCREEN_MAP
|
64
|
+
FixedMap<Str, ScreenMap, 16> screenMaps;
|
65
|
+
ScreenMap::ParseJson(JSON_SCREEN_MAP, &screenMaps);
|
66
|
+
ScreenMap screenMap = screenMaps["strip1"];
|
67
|
+
|
54
68
|
FastLED.addLeds<LED_TYPE, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS)
|
55
69
|
.setCorrection(TypicalLEDStrip)
|
56
|
-
.setScreenMap(
|
70
|
+
.setScreenMap(screenMap);
|
57
71
|
FastLED.setBrightness(96);
|
58
72
|
//fxEngine.addFx(animartrix);
|
59
73
|
video = filesystem.openVideo("data/video.dat", NUM_LEDS, FPS);
|
@@ -64,28 +78,7 @@ void setup() {
|
|
64
78
|
|
65
79
|
void loop() {
|
66
80
|
uint32_t now = millis();
|
67
|
-
|
68
|
-
// fxEngine.draw(millis(), leds);
|
69
81
|
video.draw(now, leds);
|
70
|
-
|
71
|
-
EVERY_N_SECONDS(1){
|
72
|
-
Serial.println("Drawing");
|
73
|
-
for (int i = 0; i < NUM_LEDS;) {
|
74
|
-
int nleft = MIN(8, NUM_LEDS - i);
|
75
|
-
for (int j = 0; j < nleft; j++) {
|
76
|
-
CRGB c = leds[i + j];
|
77
|
-
Serial.print("(");
|
78
|
-
Serial.print(c.r);
|
79
|
-
Serial.print(", ");
|
80
|
-
Serial.print(c.g);
|
81
|
-
Serial.print(", ");
|
82
|
-
Serial.print(c.b);
|
83
|
-
Serial.print(") ");
|
84
|
-
}
|
85
|
-
Serial.println();
|
86
|
-
i += nleft;
|
87
|
-
}
|
88
|
-
}
|
89
82
|
FastLED.show();
|
90
83
|
}
|
91
84
|
|
@@ -0,0 +1,4 @@
|
|
1
|
+
|
2
|
+
const char JSON_SCREEN_MAP[] = R"(
|
3
|
+
{"map": {"strip1": {"x": [-0.5, -1.21, -1.91, -2.62, -3.33, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -4.74, -4.04, -3.33, -2.62, -1.91, -1.21, -1.91, -2.62, -3.33, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -4.74, -4.04, -3.33, -2.62, -3.33, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -4.74, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -18.18, -18.89, -18.18, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -18.18, -18.89, -19.59, -20.3, -19.59, -18.89, -18.18, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -18.18, -18.89, -19.59, -20.3, -21.01, -21.71, -21.01, -20.3, -19.59, -18.89, -18.18, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 9.9, 10.61, 9.9, 9.19, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -9.9, -9.19, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -9.9, -10.61, 0.5, 1.21, 1.91, 2.62, 3.33, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 4.74, 4.04, 3.33, 2.62, 1.91, 1.21, 1.91, 2.62, 3.33, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 4.74, 4.04, 3.33, 2.62, 3.33, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 4.74, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 18.18, 18.89, 18.18, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 18.18, 18.89, 19.59, 20.3, 19.59, 18.89, 18.18, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 18.18, 18.89, 19.59, 20.3, 21.01, 21.71, 21.01, 20.3, 19.59, 18.89, 18.18, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -9.9, -10.61, -9.9, -9.19, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 9.9, 9.19, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 9.9, 10.61], "y": [0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -9.9, -10.61, -9.9, -9.19, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 9.9, 9.19, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 9.9, 10.61, -0.5, -1.21, -1.91, -2.62, -3.33, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -4.74, -4.04, -3.33, -2.62, -1.91, -1.21, -1.91, -2.62, -3.33, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -4.74, -4.04, -3.33, -2.62, -3.33, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -4.74, -4.04, -4.74, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -6.16, -5.45, -6.16, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -7.57, -6.86, -7.57, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -18.18, -18.89, -18.18, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -8.98, -8.28, -8.98, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -18.18, -18.89, -19.59, -20.3, -19.59, -18.89, -18.18, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, -10.4, -9.69, -10.4, -11.11, -11.81, -12.52, -13.23, -13.94, -14.64, -15.35, -16.06, -16.76, -17.47, -18.18, -18.89, -19.59, -20.3, -21.01, -21.71, -21.01, -20.3, -19.59, -18.89, -18.18, -17.47, -16.76, -16.06, -15.35, -14.64, -13.94, -13.23, -12.52, -11.81, -11.11, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 9.9, 10.61, 9.9, 9.19, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 8.48, 9.19, 8.48, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 7.07, 7.78, 7.07, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 5.66, 6.36, 5.66, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 4.24, 4.95, 4.24, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 2.83, 3.54, 2.83, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 1.41, 2.12, 1.41, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -9.9, -9.19, -8.48, -7.78, -7.07, -6.36, -5.66, -4.95, -4.24, -3.54, -2.83, -2.12, -1.41, -0.71, 0.0, 0.71, 0.0, -0.71, -1.41, -2.12, -2.83, -3.54, -4.24, -4.95, -5.66, -6.36, -7.07, -7.78, -8.48, -9.19, -9.9, -10.61, 0.5, 1.21, 1.91, 2.62, 3.33, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 4.74, 4.04, 3.33, 2.62, 1.91, 1.21, 1.91, 2.62, 3.33, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 4.74, 4.04, 3.33, 2.62, 3.33, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 4.74, 4.04, 4.74, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 6.16, 5.45, 6.16, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 7.57, 6.86, 7.57, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 18.18, 18.89, 18.18, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 8.98, 8.28, 8.98, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 18.18, 18.89, 19.59, 20.3, 19.59, 18.89, 18.18, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11, 10.4, 9.69, 10.4, 11.11, 11.81, 12.52, 13.23, 13.94, 14.64, 15.35, 16.06, 16.76, 17.47, 18.18, 18.89, 19.59, 20.3, 21.01, 21.71, 21.01, 20.3, 19.59, 18.89, 18.18, 17.47, 16.76, 16.06, 15.35, 14.64, 13.94, 13.23, 12.52, 11.81, 11.11], "diameter": 0.25}}}
|
4
|
+
)";
|