[issue10531] write tilted text in turtle

2018-06-16 Thread Ammar Askar


Ammar Askar  added the comment:

I don't think backwards compatibility matters too much for the turtle package 
but the way its proposed in the initial report makes it so that text in 
previous versions would now be angled to the turtle's heading.

To keep the previous behavior a keyword arg could be added but given that this 
package is mostly for learning and fun, that might complicate it a little.

Aside from that, the patch to add this is fairly trivial now.

--
nosy: +ammar2

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2018-06-16 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

c.create_text(100, 100, angle=90.0, text='test text')
is a tclerror in 8.5 and works in 8.6.

--
nosy: +serhiy.storchaka -BreamoreBoy

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2018-06-16 Thread Carol Willing


Carol Willing  added the comment:

This would be a fun feature to add. The next step on this issue would be to 
determine if this can be accomplished with Tk 8.6.

--
nosy: +willingc
versions: +Python 3.8 -Python 3.5

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2014-09-29 Thread Mark Lawrence

Mark Lawrence added the comment:

Could this now be implemented in the turtle module?

--
nosy: +BreamoreBoy, terry.reedy
versions: +Python 3.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10531
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2010-11-27 Thread Joe Metcalfe

Joe Metcalfe j.g.metca...@gmail.com added the comment:

Turtle is built on top of Tk, which is currently at version 8.5 - this has no 
ability to rotate text. When Tk version 8.6 arrives it should be able to write 
rotated text (see 
http://mail.python.org/pipermail/tkinter-discuss/2010-November/002490.html) and 
turtle.py could be updated to take advantage of it.

--
nosy: +Joe.Metcalfe

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10531
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2010-11-27 Thread Joe Metcalfe

Changes by Joe Metcalfe j.g.metca...@gmail.com:


--
versions:  -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10531
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2010-11-25 Thread Yingjie

New submission from Yingjie lany...@yahoo.com:

First of all, I'd like to express my deep gratidute to the author of this 
module, it is such a fun module to work with and to teach python as a first 
programming language.

Secondly, I would like to request a feature if it is not too hard to achieve. 
Currently, you can only write texts horizontally, no matter what is the current 
orientation of the turtle pen. I wonder if it is possible to write text in any 
direction when we control the heading of the turtle? For example, the following 
code would write a vertically oriented text:

 setheading(90) #turtle facing up
 write(vertical text!)

Thanks a lot!

Yingjie

--
components: Library (Lib)
messages: 122379
nosy: lanyjie
priority: normal
severity: normal
status: open
title: write tilted text in turtle
type: feature request
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10531
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10531] write tilted text in turtle

2010-11-25 Thread Ned Deily

Changes by Ned Deily n...@acm.org:


--
nosy: +belopolsky, gregorlingl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10531
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com