[SVGMobile12] A.2.7 Transform Normalization

Dear SVG WG,

http://www.w3.org/TR/SVGMobile12/svgudom.html#TransformNormalization in section
A.2.7 contains the sentence:

   E.g. "scale(2,2)" may be returned as "matrix(0,2,0,2,0,0)"

The values in the matrix() form are incorrect. Please change this to:

   E.g. "scale(2,2)" may be returned as "matrix(2,0,0,2,0,0)"

Also please separate the two examples by more than a comma by inserting the word
"and" so the text reads:

   Any transform value may be returned as the corresponding matrix. E.g.
   "scale(2,2)" may be returned as "matrix(2,0,0,2,0,0)", __and__ "scale(2,2)
   translate(10,5) rotate(45)" may be returned as
   "matrix(1.41, -1.41, 20, 1.41, 1.41, 10)".

Regards,
Jonathan

Received on Tuesday, 24 January 2006 17:57:56 UTC