Kyle Hoffman
Kyle Hoffman

Reputation: 1

Tkinter c.move text with degrees?

In Tkinter, I need to be able to move text in a certain degrees, not to a new x and y coordinate. is there any way I could do this? Any help is greatly appreciated!

Upvotes: 0

Views: 125

Answers (1)

Bryan Oakley
Bryan Oakley

Reputation: 386010

No, you cannot rotate text on a canvas.

From the canonical documentation:

Individual items may be moved or scaled using widget commands described below, but they may not be rotated.

Upvotes: 1

Related Questions