Re: TopSort in Python?

2008-01-20 Thread Mike C. Fletcher
ore I knew the name IIRC)). > P.S. we have revived a thread started in 1999! > For some of us 1999 is well into our Pythonic life-cycle :) Have fun, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http:

Re: PyOpenGL

2008-02-04 Thread Mike C. Fletcher
ur import until after you have the context setup and see if that lets glGetString return a valid pointer. HTH, Mike -- Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: IronPython vs CPython: faster in 1.6 times?

2008-02-05 Thread Mike C. Fletcher
dmitrey wrote: > Hi all, > the url http://torquedev.blogspot.com/2008/02/changes-in-air.html > (blog of a game developers) > says IronPython is faster than CPython in 1.6 times. > Is it really true? > On certain platforms, I believe so, for certain types of operations. Not sure if Mono also pr

Re: simpleparse - what is wrong with my grammar?

2008-02-24 Thread Mike C. Fletcher
t;&"/"@") word:= [a-zA-Z], [a-zA-Z0-9_]* the ?- lookahead is reasonably inefficient, but lookahead is always going around discarding partial results anyway, so it's no worse than most other formulations. HTH, Mike -- Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: simpleparse - what is wrong with my grammar?

2008-02-25 Thread Mike C. Fletcher
Laszlo Nagy wrote: ... > Is there any way I can specify precedence tables? Or do I have to use > a different parser generator then? You normally specify them as top_precedence/second_precedence/last_precedence sets. SimpleParse' limitation is with ambiguity, not with precedence. SimpleParse wi

Re: Python 3D CAD -- need collaborators, or just brave souls :)

2009-02-10 Thread Mike C. Fletcher
ecide you want to go your own way. You may want to check out PythonCAD as well, which IIRC does 2D-only CAD. Anyway, hope this was some help. Good luck, Mike -- Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: OpenGL in TK

2009-02-17 Thread Mike C. Fletcher
headache of maintenance has vastly outweighed my interest. HTH, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: SuPy 1.6

2009-02-23 Thread Mike C. Fletcher
if there's anything else you feel should be said about the program, let me know. http://www.vrplumber.com/py3d.py#supy Have fun, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumb

Re: PyOpenGL Installation

2009-05-31 Thread Mike C. Fletcher
tion of endless must be broken ;) :) , Mike -- ____ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: PyOpenGL Tutorial?

2008-07-25 Thread Mike C. Fletcher
x27;s also tutorials that are not wxPython specific on the PyOpenGL documentation page. HTH, Mike -- ____ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Some questions about PyOpenGL and wxPython

2008-09-21 Thread Mike C. Fletcher
e doing to know what's wrong there. glColor should be working. HTH, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: PyOpenGL double-buffered hardware surface

2008-10-05 Thread Mike C. Fletcher
lay module. If wxPython, see their GLcanvas object. If GLUT, see glutInitDisplayMode, etceteras. Good luck, Mike -- ____ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.o

Re: Speed of data structures in python

2006-03-10 Thread Mike C. Fletcher
abled. Simpler (static) scenegraphs where there's lots of traversal between nodes should be a much bigger win for converting the whole thing to a single display list. HTH, Mike -- ____ Mike C. Fletcher Designer, VR Plumber, Coder h

Re: Cheese Shop: some history for the new-comers

2006-03-11 Thread Mike C. Fletcher
unication appropriately. When/if the user "gets" that the Package Index is the Cheese Shop they can feel great having pierced that bubble, but don't force them to pierce it to get the software they need. Just my two cents, Mike -- Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Can I control Video Card by using Python under linux?

2006-03-31 Thread Mike C. Fletcher
some suggestion. > Thanks! > You are probably looking for the "gstreamer" package. It has Python bindings available. HTH, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumb

Re: Library support for Python 3.x

2010-01-27 Thread Mike C. Fletcher
Interestingly, at PyGTA Myles mentioned that he'd found his first-ever Python 3.x-only library! Which he then converted to Python 2.x, because he actually wanted to use it in real code :) . Projects which haven't ported to Python 3.x aren't necessarily dead, they&#x

Re: PyOpenGL and graphics card support

2009-10-01 Thread Mike C. Fletcher
nt name,glGetString(name) HTH, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Python for newbies (Pythno users group in Macedonia)

2010-03-13 Thread Mike C. Fletcher
108/ HTH, Mike -- ____ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: PyDispatcher on sourceforge doesn't play nice with easy_install

2010-03-30 Thread Mike C. Fletcher
PyPI. That should now work properly with easy_install. HTH, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Observer implementations

2009-06-16 Thread Mike C. Fletcher
, but I haven't had to change anything in a rather long time. It pretty much just works. Enjoy, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Observer implementations

2009-06-17 Thread Mike C. Fletcher
Tobias Weber wrote: > In article , > "Mike C. Fletcher" wrote: > > >> See PyDispatcher for code to do this. >> > > That was the original problem. Got it now: if used inside the class > definition dispatcher.connect will raise "cannot

Re: Python and 3d

2009-09-13 Thread Mike C. Fletcher
ceneGraph, Crystal Space, etc) should all have content loaders, though I haven't played with them enough to be able to say what formats they support. HTH, Mike -- ________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplu

Re: Twisted 100% event driven or hybrid?

2009-09-23 Thread Mike C. Fletcher
ey will let your application remain responsive to network events during the processing. HTH, Mike -- Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com -- http://mail.python.org/mailman/listinfo/python-list

<    1   2