Re: plotting pixels in python

2007-09-13 Thread Jonathan Gardner
On Sep 13, 11:37 am, [EMAIL PROTECTED] wrote: > No currently I am using a canvas from the Tkinter module > What I actually want is to show how a line is plotted pixel by pixel > using a delay loop. I want functions something like putpixel not > draw_line Try drawing 1px wide rectangles. -- http:

Re: plotting pixels in python

2007-09-13 Thread Paul McGuire
On Sep 13, 1:37 pm, [EMAIL PROTECTED] wrote: > On Sep 13, 11:22 pm, Paul McGuire <[EMAIL PROTECTED]> wrote: > > > On Sep 13, 1:03 pm, [EMAIL PROTECTED] wrote: > > > > hi to all > > > I am just a beginner of python. I want to know how pixels are plotted > > > in python. I am not intending to use PIL

Re: plotting pixels in python

2007-09-13 Thread J. Clifford Dyer
On Thu, Sep 13, 2007 at 06:37:43PM -, [EMAIL PROTECTED] wrote regarding Re: plotting pixels in python: > > On Sep 13, 11:22 pm, Paul McGuire <[EMAIL PROTECTED]> wrote: > > On Sep 13, 1:03 pm, [EMAIL PROTECTED] wrote: > > > > > hi to all > > > I am

Re: plotting pixels in python

2007-09-13 Thread jo5867472
On Sep 13, 11:22 pm, Paul McGuire <[EMAIL PROTECTED]> wrote: > On Sep 13, 1:03 pm, [EMAIL PROTECTED] wrote: > > > hi to all > > I am just a beginner of python. I want to know how pixels are plotted > > in python. I am not intending to use PIL because I don't need to > > manipulate images. So is the

Re: plotting pixels in python

2007-09-13 Thread Paul McGuire
On Sep 13, 1:03 pm, [EMAIL PROTECTED] wrote: > hi to all > I am just a beginner of python. I want to know how pixels are plotted > in python. I am not intending to use PIL because I don't need to > manipulate images. So is there a simple module for 2D graphics and > plot pixels Here is a *very* si