Dec. 12, 2011
5:42 p.m.
Igor what is the link between pango cairo and the work you did on the text model in athens? Because I have the impression that you work on text modeling is important. Stef
A taste of what will be available: rendering the same GLabel (the gaucho equivalent to StringMorph), scaling the CairoCanvas.
Pesudo Code:
"create a label" label := GLabel on : 'hello Pango-Cairo'.
"draw it on the canvas" label drawOn: canvas.
"scale the canvas" canvas translateBy: aDelta ; scaleBy: aScale.
"draw it on the canvas" label drawOn: canvas.
"repeat"