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?
Thank you
|
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? Thank you |
|||
|
|
|
As simple as I can get it. You'll have to prepend context.beginPath() and append context.stroke() yourself:
Here's a sample: http://stuff.titus-c.ch/arrow.html |
||||
|
|
You can do:
|
|||
|
|
|
Given a size and the starting position, following code will draw the arrow for you.
|
|||
|
|
|
||||
|
|