三角形 正方形

Posted weinixiong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三角形 正方形相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <canvas id="canvas" width="300" height="300"></canvas>
  <script>
  var canvas = document.getElementById(‘canvas‘);
var ctx = canvas.getContext(‘2d‘);

ctx.beginPath();
ctx.moveTo(100,100);
ctx.lineTo(200,100);
ctx.lineTo(200,200);
ctx.lineTo(100,200);
ctx.closePath();
  ctx.stroke();
ctx.fillStyle = ‘red‘;
ctx.fill();

//正方形
ctx.beginPath();
    ctx.moveTo(100, 100);
    ctx.lineTo(200, 100);
   ctx.lineTo(150, 30);
    ctx.closePath();
    ctx.stroke();
     ctx.fillStyle = ‘yellow‘;
     ctx.fill();

//三角形
  </script>
</body>
</html>


































以上是关于三角形 正方形的主要内容,如果未能解决你的问题,请参考以下文章

用JAVA编程求长方形和三角形的面积和周长

如何利用border书写三角形,建议考虑正方形

OpenGL绘制三角形而不是正方形

openGL在不同显示模式下绘制圆形三角形和正方形

初学习-python打印乘法表正方形三角形

????实现圆形嵌套正方形再嵌套三角形,点击区分