-
Type: Bug
-
Status: New
-
Priority: Trivial
-
Resolution: Unresolved
-
Affects Version/s: ODF 1.2
-
Fix Version/s: ODF 1.2 Errata 01
-
Component/s: Graphics, Part 3 (Schema) [1.2: 1]
-
Labels:None
-
Proposal:
Text in 19.107 dr3d:transform is
"matrix(<a> <b> <c> <d> <e> <f> <g> <h> <i> <j> <k> <l>): specifies a transformation in the form of a transformation matrix of twelve values. The values describe a standard 4x3 homogeneous transformation matrix in column-major order, where the right column (<j>, <k>, <l>) describes the translation. "
There "4x3" is wrong. The full transformation matrix is
a d g j
b e h k
c f i l
0 0 0 1
That is a 4x4 matrix.
Or if you drop the fix value forth row, which corresponds to "matrix of twelve values", you get
a d g j
b e h k
c f i l
That is a 3x4 matrix.
So in both cases it is not a 4x3 matrix.