亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

canvas 正五角星如何畫

canvas 正五角星如何畫

lechenging 2014-11-15 15:22:28
看網站有這個,但看不懂怎么畫的,請大牛指教
查看完整描述

1 回答

?
freeeWilll

TA貢獻3條經驗 獲得超4個贊

給你一個正五角星的畫法示例吧。如下:

<!doctype?html>
<html>
<head>
</head>
<body>
<canvas?id="canvas"?style="border:1px?solid?black;display:block;margin:50px?auto;"></canvas>
<script>
window.onload=function()
{
	var?cvs=document.getElementById('canvas');
	var?cxt=cvs.getContext('2d');
	cvs.width=800;
	cvs.height=800;
	
	drawStar(cxt,80,300,400,400,30);
	
	function?drawStar(cxt,r,R,x,y,rot)
	{
		cxt.beginPath();
		for(var?i=0;i<5;i++)
		{
			cxt.lineTo(Math.cos((18+i*72-rot)/180*Math.PI)*R+x,
			-Math.sin((18+i*72-rot)/180*Math.PI)*R+y);
			cxt.lineTo(Math.cos((54+i*72-rot)/180*Math.PI)*r+x,
			-Math.sin((54+i*72-rot)/180*Math.PI)*r+y);
		}
		cxt.closePath();
	}
	
	cxt.lineWidth=10;
	cxt.stroke();
}
</script>
</body>
</html>


查看完整回答
反對 回復 2016-02-16
  • 1 回答
  • 2 關注
  • 4330 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號