Graphin engine

I have started Graphin.dll project – portable and compact graphics engine based on AGG (agg2d in particular). Graphin url is code.google.com/p/graphin API mimics Graphics and Image objects but in plain C. In principle this is close to the <canvas> from WHAT WG . Graphin.dll includes also pnglib/zlib and jpeglib with the ability to load and…

Browser wars.

Somewhere in this month discovered in logs of this site that total number of visitiors who use Gecko (FireFox and Mozilla) and Opera browers became first time larger than number of Internet Explorer users. Of course this site has specific auditorium but nevertheless…

CSS extensions in h-smile engine. Part II. Flex units.

Flex length units are "weights" used in distribution of free space along some direction. Example of the document with flex units: <html> <head> <style> div.outer { border:red 2px dashed; width:400px; height:250px; } div.inner { margin-left:30%%; width:50%; margin-right:70%%; height:100%%; background:gold; border:brown 4px solid; } </style> <head> <body> <div class=”outer”> <div class=”inner”></div> </div> </body> </html> This document…