On 9/26/07, Heiska Anssi <[EMAIL PROTECTED]> wrote: > > Thanks, this does exactly what I asked. > > ...but it seems that I couldn't describe my problem properly (and the > examample was bad). Actually, what I meant was I want to mirror letters > upside down (by x-axis). Using previous example: > > +--------+ > | AWP | > | | > +--------+ > > Needs to be: > > +--------+ > | VMb | // V is A, M is W and b is P upside down > | | > +--------+ >
Mirroring in SVG is also easy.. e.g. to mirror vertically: <g transform="scale(1, -1)"> ... whatever you want mirrored </g> Just like with rotation, you may need to translate things around to position the "mirror line" in the right place. -Archie -- Archie L. Cobbs CTO, Awarix, Inc. http://www.awarix.com
