Skip to content

Commit eb27014

Browse files
committed
gif added
1 parent e2bba66 commit eb27014

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ Updated: December 13, 2020
88
- Picture Puzzle Sorter `TODO`
99
- Pathfinding algorithm `TODO`
1010

11-
## Skills Learned:
11+
## First Prototype
12+
<img src="mvp1.gif">
13+
14+
## Skills Learned
1215
- Multi-Threading using Swing Worker
1316
- Customising Swing Components
1417
- Graphics 2D

examples/InsertionSort.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package examples;
2+
13
// Insertion sort visualizer
24

35
import java.awt.Color;
@@ -114,7 +116,7 @@ public class InsertionSort extends JPanel {
114116
public static void main(String args[]) {
115117
SwingUtilities.invokeLater(() -> {
116118
JFrame frame = new JFrame("Insertion Sort");
117-
frame.setResizable(false);
119+
//frame.setResizable(false);
118120
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
119121
frame.setContentPane(new InsertionSort());
120122
frame.validate();

mvp1.gif

1.29 MB
Loading

0 commit comments

Comments
 (0)