about summary refs log tree commit diff stats
path: root/src/algorithms/line-drawing/DDA.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/algorithms/line-drawing/DDA.svelte')
-rw-r--r--src/algorithms/line-drawing/DDA.svelte7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/algorithms/line-drawing/DDA.svelte b/src/algorithms/line-drawing/DDA.svelte
index bee2c16..b759cdc 100644
--- a/src/algorithms/line-drawing/DDA.svelte
+++ b/src/algorithms/line-drawing/DDA.svelte
@@ -5,7 +5,10 @@
   let solved = false;
 
   let plotlyReady = false;
-  const plotlyLoaded = () => plotlyReady = true;
+  const plotlyLoaded = () => {
+    plotlyReady = true;
+    dda();
+  }
 
   let x0 = 0, y0 = 0, x1 = 4, y1 = 4;
   let dx, dy;
@@ -121,7 +124,7 @@
 
   <h3>Graph</h3>
   {#if plotlyReady === false}
-    {alert("Cannot plot graph: Plotly is not ready. Try again.")}
+
     <p class="note">
       Cannot plot graph: Plotly is not ready.
     </p>