about summary refs log tree commit diff stats
path: root/src/algorithms
diff options
context:
space:
mode:
Diffstat (limited to 'src/algorithms')
-rw-r--r--src/algorithms/line-drawing/DDA.svelte3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/algorithms/line-drawing/DDA.svelte b/src/algorithms/line-drawing/DDA.svelte
index 58cf07d..aa7ac08 100644
--- a/src/algorithms/line-drawing/DDA.svelte
+++ b/src/algorithms/line-drawing/DDA.svelte
@@ -1,5 +1,5 @@
 <svelte:head>
-  <script src="../../resources/js/plotly/plotly.min.js" on:load={plotlyLoaded}></script>
+  <script src="./plotly/plotly.min.js" on:load={plotlyLoaded}></script>
 </svelte:head>
 <script>
   let solved = false;
@@ -119,7 +119,6 @@
     </table>
   </details>
 
-
   {#if plotlyReady === false}
     <p class="note">
       Cannot plot graph: Plotly is not ready.
<vc@akkartik.com> 2021-07-16 08:38:43 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2021-07-16 08:38:43 -0700 .' href='/akkartik/mu/commit/html/502test.mu.html?h=hlt&id=78357b8852626b510527f3b8d770a7dd8956fcc7'>78357b88 ^
ec32c11d ^
78357b88 ^
20d6be52 ^
dc5a0acf ^

20d6be52 ^

372367f5 ^
372367f5 ^

20d6be52 ^

78357b88 ^
372367f5 ^
78357b88 ^
20d6be52 ^


78357b88 ^
20d6be52 ^




























3350c34a ^
20d6be52 ^


372367f5 ^
20d6be52 ^

535fe9ac ^
82171a0f ^
535fe9ac ^

82171a0f ^
3350c34a ^








372367f5 ^
3350c34a ^


82171a0f ^
3350c34a ^

82171a0f ^
3350c34a ^




372367f5 ^
3350c34a ^


82171a0f ^
3350c34a ^

82171a0f ^
3350c34a ^


20d6be52 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106