欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

canvas绘制爱心的几种方法总结(推荐)

程序员文章站 2022-07-06 20:55:34
第一种方法 代码实现的一种方法 ...

第一种方法

canvas绘制爱心的几种方法总结(推荐)

代码实现的一种方法

<!doctype html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title>使用桃心形方程绘制爱心</title>
</head>
<body>
 <canvas></canvas>
 <script>
 var canvas = document.queryselector('canvas');
 var ctx = canvas.getcontext('2d');
 canvas.width = window.innerwidth;
 canvas.height = window.innerheight;
 var heart = function(x, y) {
  this.x = x;
  this.y = y;
  this.vertices = [];
  for(let i=0; i<30; i++) {
  var step = i / 30 * (math.pi * 2);//设置心上面两点之间的角度,具体分成多少份,好像需要去试。
  var vector = {
   x : (15 * math.pow(math.sin(step), 3)),
   y : -(13 * math.cos(step) - 5 * math.cos(2 * step) - 2 * math.cos(3 * step) - math.cos(4 * step))
  }
  this.vertices.push(vector);
  }
 }
 heart.prototype.draw = function() {
  ctx.translate(-1000,this.y);//这一步跟ctx.shadowoffsetx必须一起使用,不明白为啥?
  ctx.beginpath();
  for(let i=0; i<30; i++) {
  var vector = this.vertices[i];
  ctx.lineto(vector.x, vector.y);
  }
  ctx.shadowcolor = "red";
  ctx.shadowoffsetx = this.x+1000;
  ctx.fill();
 }
 canvas.onmousedown = function(e) {
  var x = e.offsetx;
  var y = e.offsety;
  var heart = new heart(x, y);
  heart.draw();
 }
 </script>
</body>
</html>

代码里面有两处地方不明白 ctx.translate(-1000,this.y); ctx.shadowoffsetx = this.x+1000; 能感觉出来什么意思,但是不知道为啥要加上,去掉就不行了。请路过的各位大佬们帮忙解答一下~~

以上这篇canvas绘制爱心的几种方法总结(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。