html - In HTML5 canvas, what is the difference between the translate() and moveTo() javascript functions? - Stack Overflow

I am currently learning to use canvas, and do not understand the difference between these two functions

I am currently learning to use canvas, and do not understand the difference between these two functions. From what I have read, the translate method 'moves the canvas'? Can someone explain this?

Edit: Is moveTo only used within the context of a path?

I am currently learning to use canvas, and do not understand the difference between these two functions. From what I have read, the translate method 'moves the canvas'? Can someone explain this?

Edit: Is moveTo only used within the context of a path?

Share Improve this question edited Oct 3, 2013 at 0:48 Someone asked Oct 3, 2013 at 0:37 SomeoneSomeone 1211 silver badge7 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 8

To be a little more specific than Kolink, since I think the explanation is a little muddy;

-The coordinate you pass moveTo is the starting point of a new line (or shape); As if picking up your pen off the paper and setting it in a new location (the new coordinates).

-The function of lineTo is what "move(s) the pen across the paper to draw a line" (to a new coordinate you've given it, since you need two points to draw a line, obviously)

-You can place multiple lineTo calls one after another and it will use the last point you ended on, to continue the line, like so:

ctx.moveTo(100,50);
ctx.lineTo(25,175);
ctx.lineTo(175,175);
ctx.lineTo(100,50);
ctx.stroke();

here's a simple fiddle showing the oute: http://jsfiddle/fbZKu/ (you can even "fill" these shapes you make with ctx.fill()!)

-The use of translate is to move the canvas' (0,0) coordinate (upper left corner) to the new coordinate.

I hope that clears things up a bit more! Happy coding! :)

Imagine you are drawing on graph paper.

moveTo means you take your pen and move it across the paper to draw a line.

translate means you shift the position of the paper on the table.

They could not be more different functions.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743633727a4481797.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信