Re: [Tutor] newbie graphing question

2008-07-29 Thread Peter Petto
Title: Re: [Tutor] newbie graphing question Thanks so much to everyone who helped me with my gui/drawing request. I appreciate the responses from Alan, bhaluu, James, and Pierre, and am exploring all the suggestions I received. At the moment, I have my immediate needs satisfied with Tkinter

Re: [Tutor] newbie graphing question

2008-07-27 Thread Pierre Dagenais
Peter Petto wrote: I'm about to try some Python programming for drawing simple geometric pictures (for math classes I teach) and was hoping to get some advice that will send me off in the best direction. I want to write programs that can draw figures with commands akin to point(x,y) to draw a

Re: [Tutor] newbie graphing question

2008-07-27 Thread arsyed
On Sun, Jul 27, 2008 at 8:40 AM, Peter Petto <[EMAIL PROTECTED]> wrote: > I'm about to try some Python programming for drawing simple geometric > pictures (for math classes I teach) and was hoping to get some advice that > will send me off in the best direction. > > I want to write programs that ca

Re: [Tutor] newbie graphing question

2008-07-27 Thread bhaaluu
On Sun, Jul 27, 2008 at 8:40 AM, Peter Petto <[EMAIL PROTECTED]> wrote: > I'm about to try some Python programming for drawing simple geometric > pictures (for math classes I teach) and was hoping to get some advice that > will send me off in the best direction. > > I want to write programs that ca

Re: [Tutor] newbie graphing question

2008-07-27 Thread Alan Gauld
"Peter Petto" <[EMAIL PROTECTED]> wrote I want to write programs that can draw figures with commands akin to point(x,y) to draw a point at coordinates (x,y), or segment (x1,y1,x2, y2) to draw a segment between points (x1, y1) and (x2, y2)? Most GUI toolkits will have a Canvas widget or simil

[Tutor] newbie graphing question

2008-07-27 Thread Peter Petto
I'm about to try some Python programming for drawing simple geometric pictures (for math classes I teach) and was hoping to get some advice that will send me off in the best direction. I want to write programs that can draw figures with commands akin to point(x,y) to draw a point at coordinate