在画布标签上绘制箭头

编程入门 行业动态 更新时间:2024-10-26 18:21:34
本文介绍了在画布标签上绘制箭头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想使用canvas标记,javascript来绘制箭头。我已经使用二次函数,但我有计算箭头的旋转角度的问题...

I want to draw an arrow using the canvas tag, javascript. I've made it using the quadratic function, but I'm having problems to calculate the angle of rotation of the arrow...

任何人都有这个线索吗?

Anyone have a clue on this?

谢谢

推荐答案

你必须先添加context.beginPath()和追加context.stroke():

As simple as I can get it. You'll have to prepend context.beginPath() and append context.stroke() yourself:

function canvas_arrow(context, fromx, fromy, tox, toy){ var headlen = 10; // length of head in pixels var angle = Math.atan2(toy-fromy,tox-fromx); context.moveTo(fromx, fromy); context.lineTo(tox, toy); context.lineTo(tox-headlen*Math.cos(angle-Math.PI/6),toy-headlen*Math.sin(angle-Math.PI/6)); context.moveTo(tox, toy); context.lineTo(tox-headlen*Math.cos(angle+Math.PI/6),toy-headlen*Math.sin(angle+Math.PI/6)); }

下面是一个示例: stuff.titus-c.ch/arrow.html

更多推荐

在画布标签上绘制箭头

本文发布于:2023-11-11 18:45:32,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1579272.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:画布   箭头   标签

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!