Final
This commit is contained in:
RobinNixon
2020-12-10 13:50:02 +00:00
parent ec6f6b8d61
commit 3aeeb4477e
847 changed files with 0 additions and 0 deletions
-22
View File
@@ -1,22 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Bezier Curves</title>
<script src='OSC.js'></script>
</head>
<body>
<canvas id='mycanvas' width='480' height='240'></canvas>
<script>
canvas = O('mycanvas')
context = canvas.getContext('2d')
S(canvas).background = 'lightblue'
context.beginPath()
context.moveTo(240, 20)
context.bezierCurveTo(720, 480, -240, -240, 240, 220)
context.stroke()
context.closePath()
</script>
</body>
</html>