fiberpath 0.3.0__py3-none-any.whl
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.
- fiberpath/__init__.py +10 -0
- fiberpath/config/__init__.py +22 -0
- fiberpath/config/schemas.py +72 -0
- fiberpath/config/validator.py +31 -0
- fiberpath/execution/__init__.py +7 -0
- fiberpath/execution/marlin.py +311 -0
- fiberpath/gcode/__init__.py +6 -0
- fiberpath/gcode/dialects.py +47 -0
- fiberpath/gcode/generator.py +31 -0
- fiberpath/geometry/__init__.py +13 -0
- fiberpath/geometry/curves.py +16 -0
- fiberpath/geometry/intersections.py +23 -0
- fiberpath/geometry/surfaces.py +17 -0
- fiberpath/math_utils.py +20 -0
- fiberpath/planning/__init__.py +13 -0
- fiberpath/planning/calculations.py +50 -0
- fiberpath/planning/exceptions.py +19 -0
- fiberpath/planning/helpers.py +55 -0
- fiberpath/planning/layer_strategies.py +194 -0
- fiberpath/planning/machine.py +151 -0
- fiberpath/planning/planner.py +133 -0
- fiberpath/planning/validators.py +51 -0
- fiberpath/simulation/__init__.py +5 -0
- fiberpath/simulation/simulator.py +186 -0
- fiberpath/visualization/__init__.py +13 -0
- fiberpath/visualization/export_json.py +14 -0
- fiberpath/visualization/plotter.py +261 -0
- fiberpath-0.3.0.dist-info/METADATA +827 -0
- fiberpath-0.3.0.dist-info/RECORD +49 -0
- fiberpath-0.3.0.dist-info/WHEEL +4 -0
- fiberpath-0.3.0.dist-info/entry_points.txt +2 -0
- fiberpath-0.3.0.dist-info/licenses/LICENSE +661 -0
- fiberpath_api/__init__.py +5 -0
- fiberpath_api/main.py +19 -0
- fiberpath_api/routes/__init__.py +1 -0
- fiberpath_api/routes/plan.py +41 -0
- fiberpath_api/routes/simulate.py +29 -0
- fiberpath_api/routes/stream.py +49 -0
- fiberpath_api/routes/validate.py +21 -0
- fiberpath_api/schemas.py +50 -0
- fiberpath_cli/__init__.py +5 -0
- fiberpath_cli/__main__.py +6 -0
- fiberpath_cli/main.py +27 -0
- fiberpath_cli/output.py +14 -0
- fiberpath_cli/plan.py +100 -0
- fiberpath_cli/plot.py +37 -0
- fiberpath_cli/simulate.py +36 -0
- fiberpath_cli/stream.py +123 -0
- fiberpath_cli/validate.py +26 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
fiberpath/__init__.py,sha256=YYiQEcsVU0ZuIC5q_fZQ_joESFVi6gwFKreS6l-R0no,235
|
|
2
|
+
fiberpath/math_utils.py,sha256=YGQgh89CCl5cQsdMVBohIWpIRvxyL9tEpYbVogfOj50,430
|
|
3
|
+
fiberpath/config/__init__.py,sha256=Zk944FEFlOPhp5ca65AgeYpdY8Q6yVtQaNQxckVEjCg,439
|
|
4
|
+
fiberpath/config/schemas.py,sha256=dzwCNmr9ldJj8f_oAjcl7dCcoKpYrDWNotxkcvCqJM4,2537
|
|
5
|
+
fiberpath/config/validator.py,sha256=TttRz5eNYYpykDiWdtdrqbRFER2Q7r0kRKoDZLB9694,993
|
|
6
|
+
fiberpath/execution/__init__.py,sha256=OpEbg-oKpxCZMXWW9EvfFBYZydr-006fWpkaCfh_DY4,238
|
|
7
|
+
fiberpath/execution/marlin.py,sha256=gmexGuGmO6Rxva4OeZTRxpSb2FFpsZ9N8_wr_eaFO1Y,10751
|
|
8
|
+
fiberpath/gcode/__init__.py,sha256=6h1MSjbyu7Plwa8muPsASRtL1VawiHZEN30UZzM2rBA,208
|
|
9
|
+
fiberpath/gcode/dialects.py,sha256=QW__nlgp-9d1nzq0D5RachZD8tugwj2VVt4-EZOsCOY,1413
|
|
10
|
+
fiberpath/gcode/generator.py,sha256=4oz6dwHI_xkqPq1x3vbWxUNV_yrPFJFCpngd_JO7WPs,874
|
|
11
|
+
fiberpath/geometry/__init__.py,sha256=t-umksHvx4tt5ndE-_Kj9Zq56nMjq3zr5YMZC6EAFEI,342
|
|
12
|
+
fiberpath/geometry/curves.py,sha256=-Bn5wW-rtWa5ygnHD5k9h44iQZNKCJo-8Ic30MhGuQM,291
|
|
13
|
+
fiberpath/geometry/intersections.py,sha256=JlqNYWdAXEziQfEETEJTN04LKACZc0YgKlnb8hsW1dQ,659
|
|
14
|
+
fiberpath/geometry/surfaces.py,sha256=HlYTrk-9_fxm7FD2JjDLbcKgHkfTaQ6NkcX0ZSycJJw,374
|
|
15
|
+
fiberpath/planning/__init__.py,sha256=jNiifsavMPP0eiVUzQaRUcL_rLpfHFUWRHOZ2XHP_7I,306
|
|
16
|
+
fiberpath/planning/calculations.py,sha256=xXOjbpQYxJCdTSBVBuCmqm7VVAo_4B9tSHBqf6Cnf2s,1871
|
|
17
|
+
fiberpath/planning/exceptions.py,sha256=mRemmlXqVXN6dbRbShdulPAWKchZUrY_7MqOorcHzCU,574
|
|
18
|
+
fiberpath/planning/helpers.py,sha256=rfQzVijcaE_OeF8dtzDuotSE0BlOMG7AlgzkRHHi1tU,1496
|
|
19
|
+
fiberpath/planning/layer_strategies.py,sha256=cjkA8aNYQ-epiUppTSWd9d6uFDmF-mP4EHLv25ATDdY,6576
|
|
20
|
+
fiberpath/planning/machine.py,sha256=Pl3C2LgwyRi6LFbEXRmLfGlxa8LM-pWNnlWxoWES6Sg,5848
|
|
21
|
+
fiberpath/planning/planner.py,sha256=Mqs1OgWT0y6_Un2xANfwH_TbYAXPnLC2l2cmlHMo_jQ,4235
|
|
22
|
+
fiberpath/planning/validators.py,sha256=K7CSDGOB8tGTuRfoEE39vIofXMH2fWp5bkAsr3VVZLo,1612
|
|
23
|
+
fiberpath/simulation/__init__.py,sha256=w3-RO4-Se0hrezBY0xmNQ9ZYNo9PcavbzwcyhHDd4mQ,178
|
|
24
|
+
fiberpath/simulation/simulator.py,sha256=-kSTdbDlMMuPRrZ3gv3MyetSI3-U7Y1HFxSk6-0SEiU,5861
|
|
25
|
+
fiberpath/visualization/__init__.py,sha256=GPCN8zXoYanslv9zgmeqlFcwi0Qqy_wxyjpjQdtniAQ,273
|
|
26
|
+
fiberpath/visualization/export_json.py,sha256=3gyL0TOUkHH7TfUwMERO8BUUVN7xbSgRQUH6FS3IALQ,459
|
|
27
|
+
fiberpath/visualization/plotter.py,sha256=Gc44ssaEibsJYqPb3GlrhagcN3YP9cXH5bsFLo9hTxI,8249
|
|
28
|
+
fiberpath_api/__init__.py,sha256=2VgM-aFNDMsSpiGwDp_bqavPm_swCLH-IeM5eQKlfCA,93
|
|
29
|
+
fiberpath_api/main.py,sha256=VHQ0g62ICezVaINCF-TqRSYK-L5HH4u4SMfyf2lHY5E,651
|
|
30
|
+
fiberpath_api/schemas.py,sha256=Xlqjtcah2tnZPGx3CU52qN7OdBI9eERkTRdDauwcU8U,1128
|
|
31
|
+
fiberpath_api/routes/__init__.py,sha256=VkTJebsYBJtaA0rJcoue_VYvs7odsw7lk7KBq_akw3w,43
|
|
32
|
+
fiberpath_api/routes/plan.py,sha256=kkZ4huTcVcHgkLDzrcXQXNnWrV3ix2E0Y7ZNrwD0HfM,1476
|
|
33
|
+
fiberpath_api/routes/simulate.py,sha256=ejKOUDI8gyaD1xMVBiWLazfApWBCUTf56WF80kJA1Dw,970
|
|
34
|
+
fiberpath_api/routes/stream.py,sha256=P0ofrc_jXuZr5rnGpuqaaeB9YW3N4K-qWvqXCLtdga0,1663
|
|
35
|
+
fiberpath_api/routes/validate.py,sha256=y-JVlNN3dNhTfw9gs7Wga_t4Xyg3w8X78jwawNuj0Bc,666
|
|
36
|
+
fiberpath_cli/__init__.py,sha256=idpjJLl8DzrujlaAZu80jHn4P0Bi68-DiJnXfVt99mo,81
|
|
37
|
+
fiberpath_cli/__main__.py,sha256=soGa8baAVtiia8eZ3a16GyIAumWBP_npba7_AMcbh0w,139
|
|
38
|
+
fiberpath_cli/main.py,sha256=zeS4PbEUNZHTnwkpmdlT346xNSpb2MDQp0dagia5l7k,643
|
|
39
|
+
fiberpath_cli/output.py,sha256=O8bc4UH5mY17QZZMUEmVSKdvK7N-gyLpi0CnaAMSsp4,250
|
|
40
|
+
fiberpath_cli/plan.py,sha256=9mf_q8nRzuqxE46nM4s8E0E59ncsu5-6lvdl5M6haSs,3410
|
|
41
|
+
fiberpath_cli/plot.py,sha256=aUeHDbwcVd1RZVkduXJCzoy_qTz8vd5qVLffDW6riLM,1235
|
|
42
|
+
fiberpath_cli/simulate.py,sha256=12db49lfbepfmb7zb2EJiB3_132sB2sDYkD8jeNj1go,1158
|
|
43
|
+
fiberpath_cli/stream.py,sha256=5QAgKqJ3YCnyxnHAfmvmSPTnumii91CJOTYmKjGn29k,4016
|
|
44
|
+
fiberpath_cli/validate.py,sha256=wAonIKYy-HxTtWlDgK6owJTVNlEBhjO0LG8qCLwIbcQ,763
|
|
45
|
+
fiberpath-0.3.0.dist-info/METADATA,sha256=8xFdyzXjbMP4-9AbgKi9Rvw4sK9rKsT8MYkFZc4HX7Q,48161
|
|
46
|
+
fiberpath-0.3.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
47
|
+
fiberpath-0.3.0.dist-info/entry_points.txt,sha256=ZmDHGo9pB4PMnaRRWmP3L01CFj-z-_SZ8MffOkFPCAg,53
|
|
48
|
+
fiberpath-0.3.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
49
|
+
fiberpath-0.3.0.dist-info/RECORD,,
|