b87de3f8cc
Added triangles which are animated in combination with window.requestAnimationFrame and are drawn directly to the canvas
13 lines
459 B
HTML
13 lines
459 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Canvas Playground</title>
|
|
<link rel="stylesheet" type="text/css" href="main.css" />
|
|
<script type="application/javascript" src="src/draw/point.js"></script>
|
|
<script type="application/javascript" src="src/draw/triangle.js"></script>
|
|
<script type="application/javascript" src="src/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<canvas id='canvas'></canvas>
|
|
</body>
|
|
</html> |