- From: Joe Pea via GitHub <sysbot+gh@w3.org>
- Date: Mon, 30 Dec 2024 09:28:06 +0000
- To: public-fxtf-archive@w3.org
Looks like that might just be an oversight in the spec. All browsers return a 16-number matrix3d, and my polyfill does too although I didn't notice that missing detail (I assumed to return the 16-number matrix). This is what I see in browser consoles: ```js console.log( new DOMMatrix().rotateSelf(10, 20, 30).translateSelf(1, 2, 3).toString() ) // "matrix3d(0.8137976813493738, 0.46984631039295416, -0.3420201433256687, 0, -0.44096961052988237, 0.8825641192593856, 0.16317591116653482, 0, 0.37852230636979245, 0.01802831123629725, 0.9254165783983234, 0, 1.0674253793989865, 2.2890594826206168, 2.7605814142023712, 1)" ``` which has 16 numbers. -- GitHub Notification of comment by trusktr Please view or discuss this issue at https://github.com/w3c/fxtf-drafts/issues/574#issuecomment-2565233780 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Monday, 30 December 2024 09:28:07 UTC