How to change canvas rotation of an item (not the whole canvas) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to change canvas rotation of an item (not the whole canvas)

Currently, rotation an item moves it wildly across the screen. I want the item to stay in place while it rotates (saying on the same x and y axis but rotating) independent from the canvas. How do I do this?

19th Jan 2021, 2:46 AM
Cam UOR
Cam UOR - avatar
2 Answers
+ 3
Here is a working example of rotating around an arbitrary point. Copy this and make it work for your stuff. Share your code in Sololearn's Code Playground if you get stuck. After calling translate and rotate, drawing anything will end up translated(moved) and rotated. This combination is key to rotating around arbitrary points. Make sure you have a canvas element with id="myCanvas". I wish I could share all the HTML tags but Sololearn's answer feature is broken for submitting HTML. var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); function update() { ctx.clearRect(0, 0, 1000, 1000); var newT = new Date().getTime(); var angle = (newT * 0.01) % (Math.PI * 2); ctx.save(); // remember transformation matrix before updating it. ctx.translate( 100, 100 ); ctx.rotate(angle); ctx.fillRect(-50, -20, 100, 40); ctx.restore(); // restore transformation matrix. requestAnimationFrame(update); } update();
20th Jan 2021, 8:21 AM
Josh Greig
Josh Greig - avatar
+ 1
I will give it a try, thank you very much! Yup it works! Thank you!
20th Jan 2021, 11:43 PM
Cam UOR
Cam UOR - avatar