Naloga 2: WIP Bezier curves

This commit is contained in:
Gašper Dobrovoljc
2024-11-17 19:09:01 +01:00
parent d825f4e090
commit 0671004a38
11 changed files with 301 additions and 1 deletions

20
naloga_2/index.html Normal file
View File

@@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Domača Naloga 2</title>
<script defer src="main.js" type="module"></script>
</head>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
<body>
<canvas></canvas>
</body>
</html>