Re: graphics with python

2019-10-24 Thread Peter Pearson
On Thu, 24 Oct 2019 16:06:21 +0800, Maggie Q Roth wrote: [snip] > Can you show me the correct way to programming with graphics? > > I want to take some action detection, for instance, recognize dancing etc. That description of your goals is very vague. The more specific you can be about what you

Re: Graphics Library with Standard Interaction Features, 2D and 3D

2008-12-31 Thread Mirage
On Dec 31, 6:18 am, Stef Mientki wrote: > Maybe VPython (Visual) or Panda fits your needs. > cheers, > Stef I second that. Panda3D is awesome in so many ways. -- http://mail.python.org/mailman/listinfo/python-list

Re: Graphics Library with Standard Interaction Features, 2D and 3D

2008-12-31 Thread Grant Edwards
On 2008-12-31, Benjamin Blundell wrote: > Hi all. I've had a look around the forums and the we and im looking > for a library (or a set of libraries) for dealing with Visualisation > and Interaction in Python. Have you looked at VTK? http://www.vtk.org/ I've only used some of the numerical s

Re: Graphics Library with Standard Interaction Features, 2D and 3D

2008-12-31 Thread Stef Mientki
Maybe VPython (Visual) or Panda fits your needs. cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: Graphics Library with Standard Interaction Features, 2D and 3D

2008-12-31 Thread Benjamin Blundell
On Dec 31, 12:55 pm, Python wrote: > On 31 dec 2008, at 13:37, Benjamin Blundell wrote: > > > > > Hi all. I've had a look around the forums and the we and im looking > > for a library (or a set of libraries) for dealing with Visualisation > > and Interaction in Python. At the moment i've been usin

Re: Graphics Library with Standard Interaction Features, 2D and 3D

2008-12-31 Thread Python
On 31 dec 2008, at 13:37, Benjamin Blundell wrote: Hi all. I've had a look around the forums and the we and im looking for a library (or a set of libraries) for dealing with Visualisation and Interaction in Python. At the moment i've been using Flash with the Five3D library to do most of the wo

Re: Graphics Contexts and DCs explanations?

2008-08-21 Thread Tim Roberts
RgeeK <[EMAIL PROTECTED]> wrote: >... >I use the wxPython demo app heavily to figure this stuff out, and my >experiments seem to work, but I'm flying blind somewhat. > >Can someone englighten me about the wx.GraphicsContext versus wx.PaintDC > (BTW what does PaintDC stand for? Drawing Context p

Re: Graphics Contexts and DCs explanations?

2008-08-21 Thread RgeeK
Chris Mellon wrote: This is probably better suited to the wxPython ML instead of c.l.p, because it's so specific. In short: wxDC (and friends) are traditional raster based drawing contexts. wxGraphicsContext is a vector/path based API. If you're doing drawing that's suited for a vector format (l

Re: Graphics Contexts and DCs explanations?

2008-08-19 Thread Chris Mellon
On Tue, Aug 19, 2008 at 1:16 PM, RgeeK <[EMAIL PROTECTED]> wrote: > Experimenting with graphics in an app: it's AUI based with a few panes, one > of which has a panel containing a few sizers holding UI elements. One sizer > contains a panel that needs some basic line-drawing graphics in it. > > I u

Re: Graphics

2008-07-11 Thread Glenn Hutchings
vanam <[EMAIL PROTECTED]> writes: > hi all > i am new to python programming a beginner. I Came to know from the > groups that "How to think like a computer scientist" is preferable for > begineers. i just looking through that i came to one section where a > sample program for generation of graphic

Re: Graphics

2008-07-10 Thread Michiel Overtoom
Vanam wrote... > I want to know whether is there anything that has > to be installed in addition to python 2.5 > > from gasp import * You have to install the 'gasp' package too. https://launchpad.net/gasp-code/stable-0.1.x/0.1.1 -- "The ability of the OSS process to collect and harness the

Re: Graphics Module

2008-01-13 Thread Gabriel
On 11 ene, 22:51, Mike <[EMAIL PROTECTED]> wrote: > On Jan 11, 3:31 pm, "Gabriel" <[EMAIL PROTECTED]> wrote: > > > Hi all ! > > > I'm developing a math program that shows graphics of functions. > > I would hear suggestions about the way of drawing 2D . > > > Thanks a lot for your answers. > > > - G

Re: Graphics Module

2008-01-11 Thread Mike
On Jan 11, 3:31 pm, "Gabriel" <[EMAIL PROTECTED]> wrote: > Hi all ! > > I'm developing a math program that shows graphics of functions. > I would hear suggestions about the way of drawing 2D . > > Thanks a lot for your answers. > > - Gabriel - That's not a very descriptive question, however most p

Re: Graphics files & Python

2005-07-30 Thread Pekka Karjalainen
In article <[EMAIL PROTECTED]>, Terry Reedy wrote: >Besides the other responses, you might also check out the pygame site where >there once were some tutorial examples of manipulating bitmaps with >Numerical Python to get various effects. > I'll keep this in mind too. Thanks to both for helpful

Re: Graphics files & Python

2005-07-28 Thread Terry Reedy
"Pekka Karjalainen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How can I create image files and animations with Python? Besides the other responses, you might also check out the pygame site where there once were some tutorial examples of manipulating bitmaps with Numerical

Re: Graphics files & Python

2005-07-28 Thread Thomas Guettler
Am Thu, 28 Jul 2005 10:40:05 + schrieb Pekka Karjalainen: > How can I create image files and animations with Python? You can create image files with PIL: http://www.pythonware.com/products/pil/ I don't know if you can make animated gifs. You can use ImageMagick, too: http://www.imagemagic

Re: graphics

2004-11-28 Thread Yet Another Mike
You'll need wxPython. Once you get that, look in the samples for pySketch. This is a very straightforward program that helped me learn a lot about GUI with wxPython. Pretty easy to do. Once you get a hang for the basics, then you might be interested in wxGlade, an interactive GUI designer. wxGl