1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>二次贝塞尔曲线示例</title> </head> <body> <canvas id="myCanvas" width="500" height="500" style="border:1px solid #000000;"></canvas> <script> var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d');
var P0 = { x: 50, y: 400 }; var P1 = { x: 250, y: 100 }; var P2 = { x: 450, y: 400 };
ctx.beginPath(); ctx.arc(P0.x, P0.y, 5, 0, Math.PI * 2, true); ctx.arc(P2.x, P2.y, 5, 0, Math.PI * 2, true); ctx.fillStyle = 'red'; ctx.fill(); ctx.closePath();
ctx.beginPath(); ctx.arc(P1.x, P1.y, 5, 0, Math.PI * 2, true); ctx.fillStyle = 'blue'; ctx.fill(); ctx.closePath();
ctx.beginPath(); ctx.moveTo(P0.x, P0.y); ctx.quadraticCurveTo(P1.x, P1.y, P2.x, P2.y); ctx.strokeStyle = 'green'; ctx.stroke();
ctx.font = "16px Arial"; ctx.fillStyle = "black"; ctx.fillText("P0", P0.x - 10, P0.y - 10); ctx.fillText("P1", P1.x - 10, P1.y + 10); ctx.fillText("P2", P2.x - 10, P2.y - 10); </script> </body> </html>
|