Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/draw_line
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-rizki committed Feb 23, 2021
2 parents 92bc9ed + 357f19f commit 834f710
Show file tree
Hide file tree
Showing 6 changed files with 430 additions and 309 deletions.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<div class="item">
<button onclick="createRectangle()">Draw Rectangle</button>
<div class="spaceBox"></div>
<button onclick="createPolygon()">Draw Polygon</button>
<div class="spaceBox"></div>
<button onclick="enterMode(modes.MOVING)">Enter Moving Mode</button>
<div class="spaceBox"></div>
<button onclick="enterMode(modes.RESIZING)">Enter Resizing Mode</button>
Expand All @@ -31,7 +33,10 @@
</div>
</div>


<script src="point.js"></script>
<script src="rectangle.js"></script>
<script src="polygon.js"></script>
<script src="utils.js"></script>
<script src="index.js"></script>
</body>
</html>
Loading

0 comments on commit 834f710

Please sign in to comment.