为了账号安全,请及时绑定邮箱和手机立即绑定

求助:为什么我优化代码后画出来的不是星星?

求助:为什么我优化代码后画出来的不是星星?

Anastasia3847050 2016-12-22 16:14:39
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <canvas id="canvas" style="border: 1px solid #aaa;display: block;margin: 50px auto;"> </canvas> <script> window.onload=function(){ var canvas=document.getElementById("canvas"); canvas.width=800; canvas.height=800; var context=canvas.getContext('2d'); context.fillStyle="black";// 填充矩形 context.fillRect(0,0,canvas.width,canvas.height); for(i=0;i<200;i++){// Math.round()为0~1  所以r的值为10~20 var r=Math.random()*10+10; var x=Math.random()*canvas.width; var y=Math.random()*canvas.height; var a=Math.random()*360; drawStar(context,r,x,y,a); } } function drawStar(cxt,R,x,y,rot){ starPath(cxt); // 绘制在(x,y),半径为R,,旋转角度为rot的五角星 }// 绘制标准五角星 function starPath(cxt){ cxt.beginPath(); for(var i=0;i<5;i++){ cxt.lineTo(Math.cos((18+i*72)/180*Math.PI),  -Math.sin((18+i*72)/180*Math.PI));    cxt.lineTo(Math.cos((54+i*72)/180*Math.PI)*0.5,              -Math.sin((54+i*72)/180*Math.PI)*0.5); }  cxt.closePath(); } </script> </body></html>
查看完整描述

1 回答

?
瑜伽兔子

TA贡献10条经验 获得超3个赞

我看了下,坐标都不对了,,R,x,y,rot 你都没传进去

查看完整回答
反对 回复 2016-12-22
  • 1 回答
  • 0 关注
  • 1082 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信