about summary refs log tree commit diff stats
path: root/src/algorithms/line-drawing
diff options
context:
space:
mode:
Diffstat (limited to 'src/algorithms/line-drawing')
-rw-r--r--src/algorithms/line-drawing/Bresenham.svelte2
-rw-r--r--src/algorithms/line-drawing/DDA.svelte2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/algorithms/line-drawing/Bresenham.svelte b/src/algorithms/line-drawing/Bresenham.svelte
index c43f87f..3cf6ee9 100644
--- a/src/algorithms/line-drawing/Bresenham.svelte
+++ b/src/algorithms/line-drawing/Bresenham.svelte
@@ -78,7 +78,7 @@
 </form>
 
 <hr>
-<h3>Solution</h3>
+<h3>Solution:</h3>
 
 {#if invalidInput === true}
   <p class="note">
diff --git a/src/algorithms/line-drawing/DDA.svelte b/src/algorithms/line-drawing/DDA.svelte
index 379e965..6c7a4b4 100644
--- a/src/algorithms/line-drawing/DDA.svelte
+++ b/src/algorithms/line-drawing/DDA.svelte
@@ -68,7 +68,7 @@
 </form>
 
 <hr>
-<h3>Solution</h3>
+<h3>Solution:</h3>
 
 <label for="dx">dx = <code>|x1 - x0|</code>: </label>
 <input type="text" id="dx" name="dx" value={dx} disabled><br>
2422f1cc05896adf2f63f5af41c7'>^
33352536 ^
6070c23e ^
33352536 ^



71eb22a5 ^
bc20cc3d ^
33352536 ^

bc20cc3d ^


33352536 ^



bc20cc3d ^
33352536 ^
bc20cc3d ^


33352536 ^
bc20cc3d ^

33352536 ^
7a583220 ^
33352536 ^

bc20cc3d ^




3a044623 ^
bc20cc3d ^



33352536 ^
bc20cc3d ^
33352536 ^

bc20cc3d ^



7a583220 ^
33352536 ^

71eb22a5 ^
c88b9e31 ^

33352536 ^
c88b9e31 ^
bc20cc3d ^
33352536 ^
bc20cc3d ^
bc20cc3d ^
c88b9e31 ^
bc20cc3d ^
33352536 ^


71eb22a5 ^
bc20cc3d ^


33352536 ^
bc20cc3d ^


33352536 ^

bc20cc3d ^

33352536 ^

bc20cc3d ^


33352536 ^

bc20cc3d ^


33352536 ^
bc20cc3d ^


33352536 ^
bc20cc3d ^
7a583220 ^
33352536 ^

bc20cc3d ^


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
107
108
109
110
111
112
113
114
115
116
117
118