http://qs1969.pair.com?node_id=785680


in reply to Re^2: Perl graphics engine?
in thread Perl graphics engine?

If you want to create GUIs, you might want to look at Tk and/or Wx. Bot are GUI toolkits which will work on multiple OSes and have libraries for different programming languages as well.

Also, if you want to build graphics intense applications, SDL sure is one way to go, but if you come from C++ you might be disappointed by the performance, interpreted languages like Perl, Ruby or Python deliver.

Replies are listed 'Best First'.
Re^4: Perl graphics engine?
by Anonymous Monk on Aug 04, 2009 at 10:38 UTC
    but if you come from C++ you might be disappointed by the performance,

    That's true, but probably not to the extent you imagine. The OpenGL module has "comparable" performance to C, according to these benchmarks: http://graphcomp.com/opengl/index.cgi?v=0111s3B1&r=s3m3.

    I second the comments about Tk and Wx. You might also like to look at GtkPerl (it's cross-platform).

      The performance of the library itself will be comparable, yes. But if you want to do some more involved calculations (say e.g. precise collision detection) in Perl, it may slow down the program substantially. Perl is just not meant for that. But we are lucky in the way that Perl allows for Modules written in C and even writing single subroutines in C or C++ quite painlessly via Inline::C(++).