[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: Real time vector graphics

Daniel Amelang

1/27/2007 9:06:00 PM

On 1/23/07, SonOfLilit <sonoflilit@gmail.com> wrote:
> ...
> I'm planning to prototype a vector graphics Zooming User Interface using
> ruby (because it feels good and it's just a prototype - in the case that I
> elect to build the system I will probably force myself to learn a lisp and
> OpenGL or OpenVG).

Some Lisp dialect + OpenVG would be an...interesting choice for the
actual implementation. Does your choice of a Lisp dialect have
anything to due with the fact that some early ZUIs were written in a
Lisp dialect?

Also, a fast OpenVG implementation isn't (yet) readily available for
most common hardware/OS combinations out there, so you may run into
portability/speed problems with OpenVG.

>
> Has anyone tried to use the ruby bindings of Cairo? Is there an alternative?

Yes, they work great once you get them installed. Go here to find the
(very helpful) community behind them:

http://ruby-gnome2.sourc...

Cairo would be a good choice if you need 1) high portability 2)
hardware acceleration when available 3) open-source with few licensing
restrictions (LGPL).

Cairo has an OpenGL backend, and there's been talk about writing an
OpenVG backend too. So using Cairo would mean that your code wouldn't
have to change very much as you try out different rendering targets.

> By the way, does anyone know of an online resource discussing low-level
> implementation of graphical user interfaces?

You may be interesting in the paper "Implementing a Zooming User
Interface: Experience Building Pad++" by Benderson et. al

Dan

2 Answers

Daniel Amelang

1/28/2007 5:49:00 PM

0

On 1/27/07, SonOfLilit <sonoflilit@gmail.com> wrote:
> Thank you, and I've read that.
>
> I've read that Cairo is slow. Is that true or random whining?

Depends on what you're doing with it, which backend you're using and
what you're comparing it to when you say "slow". You should probably
do some quick prototyping to get an idea of how it performs for your
projected use. That said, it's fast enough for GTK, OpenOffice, and
Firefox (among others) to use. And if you find a particularly slow
case, send it to the mailing list. Performance bugs get squashed
pretty fast.

Oh, and use the latest stable snapshot (1.3.12) as it much faster than
the 1.2.x series.

Dan

Daniel Amelang

1/28/2007 6:17:00 PM

0

On 1/28/07, SonOfLilit <sonoflilit@gmail.com> wrote:
> How do I get started with Ruby/GTK to develop Cairo vector graphics on OSX?
>
> Or is there a simpler way than Ruby/GTK?
>
> Perhaps SDL?

On OSX, you can use Cairo with pretty much anything (SDL, OpenGL, GTK,
regular Carbon/Cocoa applications). You just have to figure out how to
get the different ruby bindings to work together, which can be fun.
GTK is the easiest, IMO.

As to how to get started, if I remember right, there are some examples
in the repository, but you really should ask over at the ruby-gnome2
mailing list. Kouhei Sutou is the guy to look for:

https://lists.sourceforge.net/lists/listinfo/ruby-gnome...

Dan