Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dommatrix

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dommatrix - npm Package Compare versions

Comparing version 0.0.16-alpha1 to 0.0.16-alpha2

32

dist/dommatrix.esm.js
/*!
* DOMMatrix v0.0.16alpha1 (https://thednp.github.io/DOMMatrix/)
* DOMMatrix v0.0.16alpha2 (https://thednp.github.io/DOMMatrix/)
* Copyright 2021 © thednp
* Licensed under MIT (https://github.com/thednp/DOMMatrix/blob/master/LICENSE)
*/
var version = "0.0.16alpha1";
var version = "0.0.16alpha2";

@@ -634,4 +634,4 @@ // @ts-ignore

* @param {number} x X component of the translation value.
* @param {number} y Y component of the translation value.
* @param {number} z Z component of the translation value.
* @param {?number} y Y component of the translation value.
* @param {?number} z Z component of the translation value.
* @return {CSSMatrix} The resulted matrix

@@ -655,4 +655,4 @@ */

* @param {number} x The X component of the scale value.
* @param {number} y The Y component of the scale value.
* @param {number} z The Z component of the scale value.
* @param {?number} y The Y component of the scale value.
* @param {?number} z The Z component of the scale value.
* @return {CSSMatrix} The resulted matrix

@@ -678,4 +678,4 @@ */

* @param {number} rx The X component of the rotation, or Z if Y and Z are null.
* @param {number} ry The (optional) Y component of the rotation value.
* @param {number} rz The (optional) Z component of the rotation value.
* @param {?number} ry The (optional) Y component of the rotation value.
* @param {?number} rz The (optional) Z component of the rotation value.
* @return {CSSMatrix} The resulted matrix

@@ -734,10 +734,2 @@ */

/**
* @typedef {Object} Tuple
* @property {number} x the `x-axis` component
* @property {number} y the `y-axis` component
* @property {number} z the `z-axis` component
* @property {number} w the `w` component
*/
/**
* Transforms a specified point using the matrix, returning a new

@@ -752,4 +744,4 @@ * Tuple *Object* comprising of the transformed point.

*
* @param {Tuple | DOMPoint} v Tuple or DOMPoint
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple | DOMPoint} v Tuple or DOMPoint
* @return {DMNS.PointTuple} the resulting Tuple
*/

@@ -776,4 +768,4 @@ transformPoint(v) {

*
* @param {Tuple} t Tuple with `{x,y,z,w}` components
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple} t Tuple with `{x,y,z,w}` components
* @return {DMNS.PointTuple} the resulting Tuple
*/

@@ -780,0 +772,0 @@ transform(t) {

@@ -1,2 +0,2 @@

// DOMMatrix v0.0.16alpha1 | thednp © 2021 | MIT-License
function m(m){if(!m.every(m=>!Number.isNaN(m)))throw TypeError(`CSSMatrix: "${m}" must only have numbers.`);const t=new c,e=Array.from(m);if(16===e.length){const[m,r,n,s,i,a,o,l,c,u,f,h,y,p,M,w]=e;t.m11=m,t.a=m,t.m21=i,t.c=i,t.m31=c,t.m41=y,t.e=y,t.m12=r,t.b=r,t.m22=a,t.d=a,t.m32=u,t.m42=p,t.f=p,t.m13=n,t.m23=o,t.m33=f,t.m43=M,t.m14=s,t.m24=l,t.m34=h,t.m44=w}else{if(6!==e.length)throw new TypeError("CSSMatrix: expecting an Array of 6/16 values.");{const[m,r,n,s,i,a]=e;t.m11=m,t.a=m,t.m12=r,t.b=r,t.m21=n,t.c=n,t.m22=s,t.d=s,t.m41=i,t.e=i,t.m42=a,t.f=a}}return t}function t(t){if([c,DOMMatrix].some(m=>t instanceof m)||"object"==typeof t&&["m11","m12","m13","m14","m21","m22","m23","m24","m31","m32","m33","m34","m41","m42","m43","m44"].every(m=>m in t))return m([t.m11,t.m12,t.m13,t.m14,t.m21,t.m22,t.m23,t.m24,t.m31,t.m32,t.m33,t.m34,t.m41,t.m42,t.m43,t.m44]);throw TypeError(`CSSMatrix: "${t}" is not a DOMMatrix / CSSMatrix compatible object.`)}function e(t){if("string"!=typeof t)throw TypeError(`CSSMatrix: "${t}" is not a string.`);const e=String(t).replace(/\s/g,"");let r=new c;return e.split(")").filter(m=>m).map(m=>{const[t,e]=m.split("(");return{prop:t,components:e.split(",").map(m=>m.includes("rad")?parseFloat(m)*(180/Math.PI):parseFloat(m))}}).forEach(t=>{const{prop:e,components:n}=t,[s,i,a,o]=n,l=[s,i,a],c=[s,i,a,o];if(e.includes("matrix")){const t=n.map(m=>Math.abs(m)<1e-6?0:m);[6,16].includes(t.length)&&(r=r.multiply(m(t)))}else if(["translate","translate3d"].some(m=>e===m)&&s)r=r.translate(s,i||0,a||0);else if("rotate3d"===e&&c.every(m=>!Number.isNaN(+m))&&o)r=r.rotateAxisAngle(s,i,a,o);else if("scale3d"===e&&l.every(m=>!Number.isNaN(+m))&&l.some(m=>1!==m))r=r.scale(s,i,a);else if("rotate"===e&&s)r=r.rotate(0,0,s);else if("scale"!==e||Number.isNaN(s)||1===s){if("skew"===e&&(s||i))r=s?r.skewX(s):r,r=i?r.skewY(i):r;else if(/[XYZ]/.test(e)&&s)if(e.includes("skew"))r=r[e](s);else{const m=e.replace(/[XYZ]/,""),t=e.replace(m,""),n=["X","Y","Z"].indexOf(t),i=[0===n?s:0,1===n?s:0,2===n?s:0];r=r[m](...i)}}else{const m=Number.isNaN(+i)?s:i;r=r.scale(s,m,1)}}),r}function r(m,t,e){const r=new c;return r.m41=m,r.e=m,r.m42=t,r.f=t,r.m43=e,r}function n(m,t,e){const r=new c,n=Math.PI/180,s=m*n,i=t*n,a=e*n,o=Math.cos(s),l=-Math.sin(s),u=Math.cos(i),f=-Math.sin(i),h=Math.cos(a),y=-Math.sin(a),p=u*h,M=-u*y;r.m11=p,r.a=p,r.m12=M,r.b=M,r.m13=f;const w=l*f*h+o*y;r.m21=w,r.c=w;const x=o*h-l*f*y;return r.m22=x,r.d=x,r.m23=-l*u,r.m31=l*y-o*f*h,r.m32=l*h+o*f*y,r.m33=o*u,r}function s(m,t,e,r){const n=new c,s=r*(Math.PI/360),i=Math.sin(s),a=Math.cos(s),o=i*i,l=Math.sqrt(m*m+t*t+e*e);let u=m,f=t,h=e;0===l?(u=0,f=0,h=1):(u/=l,f/=l,h/=l);const y=u*u,p=f*f,M=h*h,w=1-2*(p+M)*o;n.m11=w,n.a=w;const x=2*(u*f*o+h*i*a);n.m12=x,n.b=x,n.m13=2*(u*h*o-f*i*a);const d=2*(f*u*o-h*i*a);n.m21=d,n.c=d;const g=1-2*(M+y)*o;return n.m22=g,n.d=g,n.m23=2*(f*h*o+u*i*a),n.m31=2*(h*u*o+f*i*a),n.m32=2*(h*f*o-u*i*a),n.m33=1-2*(y+p)*o,n}function i(m,t,e){const r=new c;return r.m11=m,r.a=m,r.m22=t,r.d=t,r.m33=e,r}function a(m){const t=new c,e=m*Math.PI/180,r=Math.tan(e);return t.m21=r,t.c=r,t}function o(m){const t=new c,e=m*Math.PI/180,r=Math.tan(e);return t.m12=r,t.b=r,t}function l(t,e){return m([e.m11*t.m11+e.m12*t.m21+e.m13*t.m31+e.m14*t.m41,e.m11*t.m12+e.m12*t.m22+e.m13*t.m32+e.m14*t.m42,e.m11*t.m13+e.m12*t.m23+e.m13*t.m33+e.m14*t.m43,e.m11*t.m14+e.m12*t.m24+e.m13*t.m34+e.m14*t.m44,e.m21*t.m11+e.m22*t.m21+e.m23*t.m31+e.m24*t.m41,e.m21*t.m12+e.m22*t.m22+e.m23*t.m32+e.m24*t.m42,e.m21*t.m13+e.m22*t.m23+e.m23*t.m33+e.m24*t.m43,e.m21*t.m14+e.m22*t.m24+e.m23*t.m34+e.m24*t.m44,e.m31*t.m11+e.m32*t.m21+e.m33*t.m31+e.m34*t.m41,e.m31*t.m12+e.m32*t.m22+e.m33*t.m32+e.m34*t.m42,e.m31*t.m13+e.m32*t.m23+e.m33*t.m33+e.m34*t.m43,e.m31*t.m14+e.m32*t.m24+e.m33*t.m34+e.m34*t.m44,e.m41*t.m11+e.m42*t.m21+e.m43*t.m31+e.m44*t.m41,e.m41*t.m12+e.m42*t.m22+e.m43*t.m32+e.m44*t.m42,e.m41*t.m13+e.m42*t.m23+e.m43*t.m33+e.m44*t.m43,e.m41*t.m14+e.m42*t.m24+e.m43*t.m34+e.m44*t.m44])}class c{constructor(...m){const t=this;if(t.a=1,t.b=0,t.c=0,t.d=1,t.e=0,t.f=0,t.m11=1,t.m12=0,t.m13=0,t.m14=0,t.m21=0,t.m22=1,t.m23=0,t.m24=0,t.m31=0,t.m32=0,t.m33=1,t.m34=0,t.m41=0,t.m42=0,t.m43=0,t.m44=1,m&&m.length){let e=m;return m instanceof Array&&(m[0]instanceof Array&&[16,6].includes(m[0].length)||"string"==typeof m[0]||[c,DOMMatrix].some(t=>m[0]instanceof t))&&([e]=m),t.setMatrixValue(e)}return t}set isIdentity(m){this.isIdentity=m}get isIdentity(){const m=this;return 1===m.m11&&0===m.m12&&0===m.m13&&0===m.m14&&0===m.m21&&1===m.m22&&0===m.m23&&0===m.m24&&0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m41&&0===m.m42&&0===m.m43&&1===m.m44}get is2D(){const m=this;return 0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m43&&1===m.m44}set is2D(m){this.is2D=m}setMatrixValue(r){return[DOMMatrix,c].some(m=>r instanceof m)?t(r):"string"==typeof r&&r.length&&"none"!==r?e(r):Array.isArray(r)?m(r):this}toString(){const m=this.toArray().join(",");return`${this.is2D?"matrix":"matrix3d"}(${m})`}toArray(){const m=this;let t;return t=m.is2D?[m.a,m.b,m.c,m.d,m.e,m.f]:[m.m11,m.m12,m.m13,m.m14,m.m21,m.m22,m.m23,m.m24,m.m31,m.m32,m.m33,m.m34,m.m41,m.m42,m.m43,m.m44],t.map(m=>Math.abs(m)<1e-6?0:(m*10**6>>0)/10**6)}toJSON(){return JSON.parse(JSON.stringify(this))}multiply(m){return l(this,m)}translate(m,t,e){let n=t,s=e;return null==s&&(s=0),null==n&&(n=0),l(this,r(m,n,s))}scale(m,t,e){let r=t,n=e;return null==r&&(r=m),null==n&&(n=m),l(this,i(m,r,n))}rotate(m,t,e){let r=m,s=t,i=e;return null==s&&(s=0),null==i&&(i=r,r=0),l(this,n(r,s,i))}rotateAxisAngle(m,t,e,r){if([m,t,e,r].some(m=>Number.isNaN(m)))throw new TypeError("CSSMatrix: expecting 4 values");return l(this,s(m,t,e,r))}skewX(m){return l(this,a(m))}skewY(m){return l(this,o(m))}transformPoint(m){let t=r(m.x,m.y,m.z);return t.m44=m.w||1,t=this.multiply(t),{x:t.m41,y:t.m42,z:t.m43,w:t.m44}}transform(m){const t=this,e=t.m11*m.x+t.m12*m.y+t.m13*m.z+t.m14*m.w,r=t.m21*m.x+t.m22*m.y+t.m23*m.z+t.m24*m.w,n=t.m31*m.x+t.m32*m.y+t.m33*m.z+t.m34*m.w,s=t.m41*m.x+t.m42*m.y+t.m43*m.z+t.m44*m.w;return{x:e/s,y:r/s,z:n/s,w:s}}}c.Translate=r,c.Rotate=n,c.RotateAxisAngle=s,c.Scale=i,c.SkewX=a,c.SkewY=o,c.Multiply=l,c.fromArray=m,c.fromMatrix=t,c.fromString=e,c.Version="0.0.16alpha1";export{c as default};
// DOMMatrix v0.0.16alpha2 | thednp © 2021 | MIT-License
function m(m){if(!m.every(m=>!Number.isNaN(m)))throw TypeError(`CSSMatrix: "${m}" must only have numbers.`);const t=new c,e=Array.from(m);if(16===e.length){const[m,r,n,s,i,a,o,l,c,u,f,h,y,p,M,w]=e;t.m11=m,t.a=m,t.m21=i,t.c=i,t.m31=c,t.m41=y,t.e=y,t.m12=r,t.b=r,t.m22=a,t.d=a,t.m32=u,t.m42=p,t.f=p,t.m13=n,t.m23=o,t.m33=f,t.m43=M,t.m14=s,t.m24=l,t.m34=h,t.m44=w}else{if(6!==e.length)throw new TypeError("CSSMatrix: expecting an Array of 6/16 values.");{const[m,r,n,s,i,a]=e;t.m11=m,t.a=m,t.m12=r,t.b=r,t.m21=n,t.c=n,t.m22=s,t.d=s,t.m41=i,t.e=i,t.m42=a,t.f=a}}return t}function t(t){if([c,DOMMatrix].some(m=>t instanceof m)||"object"==typeof t&&["m11","m12","m13","m14","m21","m22","m23","m24","m31","m32","m33","m34","m41","m42","m43","m44"].every(m=>m in t))return m([t.m11,t.m12,t.m13,t.m14,t.m21,t.m22,t.m23,t.m24,t.m31,t.m32,t.m33,t.m34,t.m41,t.m42,t.m43,t.m44]);throw TypeError(`CSSMatrix: "${t}" is not a DOMMatrix / CSSMatrix compatible object.`)}function e(t){if("string"!=typeof t)throw TypeError(`CSSMatrix: "${t}" is not a string.`);const e=String(t).replace(/\s/g,"");let r=new c;return e.split(")").filter(m=>m).map(m=>{const[t,e]=m.split("(");return{prop:t,components:e.split(",").map(m=>m.includes("rad")?parseFloat(m)*(180/Math.PI):parseFloat(m))}}).forEach(t=>{const{prop:e,components:n}=t,[s,i,a,o]=n,l=[s,i,a],c=[s,i,a,o];if(e.includes("matrix")){const t=n.map(m=>Math.abs(m)<1e-6?0:m);[6,16].includes(t.length)&&(r=r.multiply(m(t)))}else if(["translate","translate3d"].some(m=>e===m)&&s)r=r.translate(s,i||0,a||0);else if("rotate3d"===e&&c.every(m=>!Number.isNaN(+m))&&o)r=r.rotateAxisAngle(s,i,a,o);else if("scale3d"===e&&l.every(m=>!Number.isNaN(+m))&&l.some(m=>1!==m))r=r.scale(s,i,a);else if("rotate"===e&&s)r=r.rotate(0,0,s);else if("scale"!==e||Number.isNaN(s)||1===s){if("skew"===e&&(s||i))r=s?r.skewX(s):r,r=i?r.skewY(i):r;else if(/[XYZ]/.test(e)&&s)if(e.includes("skew"))r=r[e](s);else{const m=e.replace(/[XYZ]/,""),t=e.replace(m,""),n=["X","Y","Z"].indexOf(t),i=[0===n?s:0,1===n?s:0,2===n?s:0];r=r[m](...i)}}else{const m=Number.isNaN(+i)?s:i;r=r.scale(s,m,1)}}),r}function r(m,t,e){const r=new c;return r.m41=m,r.e=m,r.m42=t,r.f=t,r.m43=e,r}function n(m,t,e){const r=new c,n=Math.PI/180,s=m*n,i=t*n,a=e*n,o=Math.cos(s),l=-Math.sin(s),u=Math.cos(i),f=-Math.sin(i),h=Math.cos(a),y=-Math.sin(a),p=u*h,M=-u*y;r.m11=p,r.a=p,r.m12=M,r.b=M,r.m13=f;const w=l*f*h+o*y;r.m21=w,r.c=w;const x=o*h-l*f*y;return r.m22=x,r.d=x,r.m23=-l*u,r.m31=l*y-o*f*h,r.m32=l*h+o*f*y,r.m33=o*u,r}function s(m,t,e,r){const n=new c,s=r*(Math.PI/360),i=Math.sin(s),a=Math.cos(s),o=i*i,l=Math.sqrt(m*m+t*t+e*e);let u=m,f=t,h=e;0===l?(u=0,f=0,h=1):(u/=l,f/=l,h/=l);const y=u*u,p=f*f,M=h*h,w=1-2*(p+M)*o;n.m11=w,n.a=w;const x=2*(u*f*o+h*i*a);n.m12=x,n.b=x,n.m13=2*(u*h*o-f*i*a);const d=2*(f*u*o-h*i*a);n.m21=d,n.c=d;const g=1-2*(M+y)*o;return n.m22=g,n.d=g,n.m23=2*(f*h*o+u*i*a),n.m31=2*(h*u*o+f*i*a),n.m32=2*(h*f*o-u*i*a),n.m33=1-2*(y+p)*o,n}function i(m,t,e){const r=new c;return r.m11=m,r.a=m,r.m22=t,r.d=t,r.m33=e,r}function a(m){const t=new c,e=m*Math.PI/180,r=Math.tan(e);return t.m21=r,t.c=r,t}function o(m){const t=new c,e=m*Math.PI/180,r=Math.tan(e);return t.m12=r,t.b=r,t}function l(t,e){return m([e.m11*t.m11+e.m12*t.m21+e.m13*t.m31+e.m14*t.m41,e.m11*t.m12+e.m12*t.m22+e.m13*t.m32+e.m14*t.m42,e.m11*t.m13+e.m12*t.m23+e.m13*t.m33+e.m14*t.m43,e.m11*t.m14+e.m12*t.m24+e.m13*t.m34+e.m14*t.m44,e.m21*t.m11+e.m22*t.m21+e.m23*t.m31+e.m24*t.m41,e.m21*t.m12+e.m22*t.m22+e.m23*t.m32+e.m24*t.m42,e.m21*t.m13+e.m22*t.m23+e.m23*t.m33+e.m24*t.m43,e.m21*t.m14+e.m22*t.m24+e.m23*t.m34+e.m24*t.m44,e.m31*t.m11+e.m32*t.m21+e.m33*t.m31+e.m34*t.m41,e.m31*t.m12+e.m32*t.m22+e.m33*t.m32+e.m34*t.m42,e.m31*t.m13+e.m32*t.m23+e.m33*t.m33+e.m34*t.m43,e.m31*t.m14+e.m32*t.m24+e.m33*t.m34+e.m34*t.m44,e.m41*t.m11+e.m42*t.m21+e.m43*t.m31+e.m44*t.m41,e.m41*t.m12+e.m42*t.m22+e.m43*t.m32+e.m44*t.m42,e.m41*t.m13+e.m42*t.m23+e.m43*t.m33+e.m44*t.m43,e.m41*t.m14+e.m42*t.m24+e.m43*t.m34+e.m44*t.m44])}class c{constructor(...m){const t=this;if(t.a=1,t.b=0,t.c=0,t.d=1,t.e=0,t.f=0,t.m11=1,t.m12=0,t.m13=0,t.m14=0,t.m21=0,t.m22=1,t.m23=0,t.m24=0,t.m31=0,t.m32=0,t.m33=1,t.m34=0,t.m41=0,t.m42=0,t.m43=0,t.m44=1,m&&m.length){let e=m;return m instanceof Array&&(m[0]instanceof Array&&[16,6].includes(m[0].length)||"string"==typeof m[0]||[c,DOMMatrix].some(t=>m[0]instanceof t))&&([e]=m),t.setMatrixValue(e)}return t}set isIdentity(m){this.isIdentity=m}get isIdentity(){const m=this;return 1===m.m11&&0===m.m12&&0===m.m13&&0===m.m14&&0===m.m21&&1===m.m22&&0===m.m23&&0===m.m24&&0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m41&&0===m.m42&&0===m.m43&&1===m.m44}get is2D(){const m=this;return 0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m43&&1===m.m44}set is2D(m){this.is2D=m}setMatrixValue(r){return[DOMMatrix,c].some(m=>r instanceof m)?t(r):"string"==typeof r&&r.length&&"none"!==r?e(r):Array.isArray(r)?m(r):this}toString(){const m=this.toArray().join(",");return`${this.is2D?"matrix":"matrix3d"}(${m})`}toArray(){const m=this;let t;return t=m.is2D?[m.a,m.b,m.c,m.d,m.e,m.f]:[m.m11,m.m12,m.m13,m.m14,m.m21,m.m22,m.m23,m.m24,m.m31,m.m32,m.m33,m.m34,m.m41,m.m42,m.m43,m.m44],t.map(m=>Math.abs(m)<1e-6?0:(m*10**6>>0)/10**6)}toJSON(){return JSON.parse(JSON.stringify(this))}multiply(m){return l(this,m)}translate(m,t,e){let n=t,s=e;return null==s&&(s=0),null==n&&(n=0),l(this,r(m,n,s))}scale(m,t,e){let r=t,n=e;return null==r&&(r=m),null==n&&(n=m),l(this,i(m,r,n))}rotate(m,t,e){let r=m,s=t,i=e;return null==s&&(s=0),null==i&&(i=r,r=0),l(this,n(r,s,i))}rotateAxisAngle(m,t,e,r){if([m,t,e,r].some(m=>Number.isNaN(m)))throw new TypeError("CSSMatrix: expecting 4 values");return l(this,s(m,t,e,r))}skewX(m){return l(this,a(m))}skewY(m){return l(this,o(m))}transformPoint(m){let t=r(m.x,m.y,m.z);return t.m44=m.w||1,t=this.multiply(t),{x:t.m41,y:t.m42,z:t.m43,w:t.m44}}transform(m){const t=this,e=t.m11*m.x+t.m12*m.y+t.m13*m.z+t.m14*m.w,r=t.m21*m.x+t.m22*m.y+t.m23*m.z+t.m24*m.w,n=t.m31*m.x+t.m32*m.y+t.m33*m.z+t.m34*m.w,s=t.m41*m.x+t.m42*m.y+t.m43*m.z+t.m44*m.w;return{x:e/s,y:r/s,z:n/s,w:s}}}c.Translate=r,c.Rotate=n,c.RotateAxisAngle=s,c.Scale=i,c.SkewX=a,c.SkewY=o,c.Multiply=l,c.fromArray=m,c.fromMatrix=t,c.fromString=e,c.Version="0.0.16alpha2";export{c as default};
/*!
* DOMMatrix v0.0.16alpha1 (https://thednp.github.io/DOMMatrix/)
* DOMMatrix v0.0.16alpha2 (https://thednp.github.io/DOMMatrix/)
* Copyright 2021 © thednp

@@ -12,3 +12,3 @@ * Licensed under MIT (https://github.com/thednp/DOMMatrix/blob/master/LICENSE)

var version = "0.0.16alpha1";
var version = "0.0.16alpha2";

@@ -665,4 +665,4 @@ // @ts-ignore

* @param {number} x X component of the translation value.
* @param {number} y Y component of the translation value.
* @param {number} z Z component of the translation value.
* @param {?number} y Y component of the translation value.
* @param {?number} z Z component of the translation value.
* @return {CSSMatrix} The resulted matrix

@@ -686,4 +686,4 @@ */

* @param {number} x The X component of the scale value.
* @param {number} y The Y component of the scale value.
* @param {number} z The Z component of the scale value.
* @param {?number} y The Y component of the scale value.
* @param {?number} z The Z component of the scale value.
* @return {CSSMatrix} The resulted matrix

@@ -709,4 +709,4 @@ */

* @param {number} rx The X component of the rotation, or Z if Y and Z are null.
* @param {number} ry The (optional) Y component of the rotation value.
* @param {number} rz The (optional) Z component of the rotation value.
* @param {?number} ry The (optional) Y component of the rotation value.
* @param {?number} rz The (optional) Z component of the rotation value.
* @return {CSSMatrix} The resulted matrix

@@ -765,10 +765,2 @@ */

/**
* @typedef {Object} Tuple
* @property {number} x the `x-axis` component
* @property {number} y the `y-axis` component
* @property {number} z the `z-axis` component
* @property {number} w the `w` component
*/
/**
* Transforms a specified point using the matrix, returning a new

@@ -783,4 +775,4 @@ * Tuple *Object* comprising of the transformed point.

*
* @param {Tuple | DOMPoint} v Tuple or DOMPoint
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple | DOMPoint} v Tuple or DOMPoint
* @return {DMNS.PointTuple} the resulting Tuple
*/

@@ -807,4 +799,4 @@ CSSMatrix.prototype.transformPoint = function transformPoint (v) {

*
* @param {Tuple} t Tuple with `{x,y,z,w}` components
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple} t Tuple with `{x,y,z,w}` components
* @return {DMNS.PointTuple} the resulting Tuple
*/

@@ -811,0 +803,0 @@ CSSMatrix.prototype.transform = function transform (t) {

@@ -1,2 +0,2 @@

// DOMMatrix v0.0.16alpha1 | thednp © 2021 | MIT-License
!function(m,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(m="undefined"!=typeof globalThis?globalThis:m||self).CSSMatrix=t()}(this,(function(){"use strict";function m(m){if(!m.every((function(m){return!Number.isNaN(m)})))throw TypeError('CSSMatrix: "'+m+'" must only have numbers.');var t=new f,r=Array.from(m);if(16===r.length){var e=r[0],n=r[1],i=r[2],a=r[3],o=r[4],s=r[5],u=r[6],c=r[7],l=r[8],p=r[9],y=r[10],h=r[11],v=r[12],M=r[13],d=r[14],x=r[15];t.m11=e,t.a=e,t.m21=o,t.c=o,t.m31=l,t.m41=v,t.e=v,t.m12=n,t.b=n,t.m22=s,t.d=s,t.m32=p,t.m42=M,t.f=M,t.m13=i,t.m23=u,t.m33=y,t.m43=d,t.m14=a,t.m24=c,t.m34=h,t.m44=x}else{if(6!==r.length)throw new TypeError("CSSMatrix: expecting an Array of 6/16 values.");var w=r[0],g=r[1],b=r[2],S=r[3],N=r[4],A=r[5];t.m11=w,t.a=w,t.m12=g,t.b=g,t.m21=b,t.c=b,t.m22=S,t.d=S,t.m41=N,t.e=N,t.m42=A,t.f=A}return t}function t(t){if([f,DOMMatrix].some((function(m){return t instanceof m}))||"object"==typeof t&&["m11","m12","m13","m14","m21","m22","m23","m24","m31","m32","m33","m34","m41","m42","m43","m44"].every((function(m){return m in t})))return m([t.m11,t.m12,t.m13,t.m14,t.m21,t.m22,t.m23,t.m24,t.m31,t.m32,t.m33,t.m34,t.m41,t.m42,t.m43,t.m44]);throw TypeError('CSSMatrix: "'+t+'" is not a DOMMatrix / CSSMatrix compatible object.')}function r(t){if("string"!=typeof t)throw TypeError('CSSMatrix: "'+t+'" is not a string.');var r=String(t).replace(/\s/g,""),e=new f;return r.split(")").filter((function(m){return m})).map((function(m){var t=m.split("("),r=t[0],e=t[1].split(",").map((function(m){return m.includes("rad")?parseFloat(m)*(180/Math.PI):parseFloat(m)}));return e[0],e[1],e[2],e[3],{prop:r,components:e}})).forEach((function(t){var r=t.prop,n=t.components,i=n[0],a=n[1],o=n[2],s=n[3],u=[i,a,o],f=[i,a,o,s];if(r.includes("matrix")){var c=n.map((function(m){return Math.abs(m)<1e-6?0:m}));[6,16].includes(c.length)&&(e=e.multiply(m(c)))}else if(["translate","translate3d"].some((function(m){return r===m}))&&i)e=e.translate(i,a||0,o||0);else if("rotate3d"===r&&f.every((function(m){return!Number.isNaN(+m)}))&&s)e=e.rotateAxisAngle(i,a,o,s);else if("scale3d"===r&&u.every((function(m){return!Number.isNaN(+m)}))&&u.some((function(m){return 1!==m})))e=e.scale(i,a,o);else if("rotate"===r&&i)e=e.rotate(0,0,i);else if("scale"!==r||Number.isNaN(i)||1===i){if("skew"===r&&(i||a))e=i?e.skewX(i):e,e=a?e.skewY(a):e;else if(/[XYZ]/.test(r)&&i)if(r.includes("skew"))e=e[r](i);else{var l=r.replace(/[XYZ]/,""),p=r.replace(l,""),y=["X","Y","Z"].indexOf(p),h=[0===y?i:0,1===y?i:0,2===y?i:0];e=e[l].apply(e,h)}}else{var v=Number.isNaN(+a)?i:a;e=e.scale(i,v,1)}})),e}function e(m,t,r){var e=new f;return e.m41=m,e.e=m,e.m42=t,e.f=t,e.m43=r,e}function n(m,t,r){var e=new f,n=Math.PI/180,i=m*n,a=t*n,o=r*n,s=Math.cos(i),u=-Math.sin(i),c=Math.cos(a),l=-Math.sin(a),p=Math.cos(o),y=-Math.sin(o),h=c*p,v=-c*y;e.m11=h,e.a=h,e.m12=v,e.b=v,e.m13=l;var M=u*l*p+s*y;e.m21=M,e.c=M;var d=s*p-u*l*y;return e.m22=d,e.d=d,e.m23=-u*c,e.m31=u*y-s*l*p,e.m32=u*p+s*l*y,e.m33=s*c,e}function i(m,t,r,e){var n=new f,i=e*(Math.PI/360),a=Math.sin(i),o=Math.cos(i),s=a*a,u=Math.sqrt(m*m+t*t+r*r),c=m,l=t,p=r;0===u?(c=0,l=0,p=1):(c/=u,l/=u,p/=u);var y=c*c,h=l*l,v=p*p,M=1-2*(h+v)*s;n.m11=M,n.a=M;var d=2*(c*l*s+p*a*o);n.m12=d,n.b=d,n.m13=2*(c*p*s-l*a*o);var x=2*(l*c*s-p*a*o);n.m21=x,n.c=x;var w=1-2*(v+y)*s;return n.m22=w,n.d=w,n.m23=2*(l*p*s+c*a*o),n.m31=2*(p*c*s+l*a*o),n.m32=2*(p*l*s-c*a*o),n.m33=1-2*(y+h)*s,n}function a(m,t,r){var e=new f;return e.m11=m,e.a=m,e.m22=t,e.d=t,e.m33=r,e}function o(m){var t=new f,r=m*Math.PI/180,e=Math.tan(r);return t.m21=e,t.c=e,t}function s(m){var t=new f,r=m*Math.PI/180,e=Math.tan(r);return t.m12=e,t.b=e,t}function u(t,r){return m([r.m11*t.m11+r.m12*t.m21+r.m13*t.m31+r.m14*t.m41,r.m11*t.m12+r.m12*t.m22+r.m13*t.m32+r.m14*t.m42,r.m11*t.m13+r.m12*t.m23+r.m13*t.m33+r.m14*t.m43,r.m11*t.m14+r.m12*t.m24+r.m13*t.m34+r.m14*t.m44,r.m21*t.m11+r.m22*t.m21+r.m23*t.m31+r.m24*t.m41,r.m21*t.m12+r.m22*t.m22+r.m23*t.m32+r.m24*t.m42,r.m21*t.m13+r.m22*t.m23+r.m23*t.m33+r.m24*t.m43,r.m21*t.m14+r.m22*t.m24+r.m23*t.m34+r.m24*t.m44,r.m31*t.m11+r.m32*t.m21+r.m33*t.m31+r.m34*t.m41,r.m31*t.m12+r.m32*t.m22+r.m33*t.m32+r.m34*t.m42,r.m31*t.m13+r.m32*t.m23+r.m33*t.m33+r.m34*t.m43,r.m31*t.m14+r.m32*t.m24+r.m33*t.m34+r.m34*t.m44,r.m41*t.m11+r.m42*t.m21+r.m43*t.m31+r.m44*t.m41,r.m41*t.m12+r.m42*t.m22+r.m43*t.m32+r.m44*t.m42,r.m41*t.m13+r.m42*t.m23+r.m43*t.m33+r.m44*t.m43,r.m41*t.m14+r.m42*t.m24+r.m43*t.m34+r.m44*t.m44])}var f=function m(){for(var t=[],r=arguments.length;r--;)t[r]=arguments[r];var e=this;if(e.a=1,e.b=0,e.c=0,e.d=1,e.e=0,e.f=0,e.m11=1,e.m12=0,e.m13=0,e.m14=0,e.m21=0,e.m22=1,e.m23=0,e.m24=0,e.m31=0,e.m32=0,e.m33=1,e.m34=0,e.m41=0,e.m42=0,e.m43=0,e.m44=1,t&&t.length){var n=t;return t instanceof Array&&(t[0]instanceof Array&&[16,6].includes(t[0].length)||"string"==typeof t[0]||[m,DOMMatrix].some((function(m){return t[0]instanceof m})))&&(n=t[0]),e.setMatrixValue(n)}return e},c={isIdentity:{configurable:!0},is2D:{configurable:!0}};return c.isIdentity.set=function(m){this.isIdentity=m},c.isIdentity.get=function(){var m=this;return 1===m.m11&&0===m.m12&&0===m.m13&&0===m.m14&&0===m.m21&&1===m.m22&&0===m.m23&&0===m.m24&&0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m41&&0===m.m42&&0===m.m43&&1===m.m44},c.is2D.get=function(){var m=this;return 0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m43&&1===m.m44},c.is2D.set=function(m){this.is2D=m},f.prototype.setMatrixValue=function(e){return[DOMMatrix,f].some((function(m){return e instanceof m}))?t(e):"string"==typeof e&&e.length&&"none"!==e?r(e):Array.isArray(e)?m(e):this},f.prototype.toString=function(){var m=this.toArray().join(",");return(this.is2D?"matrix":"matrix3d")+"("+m+")"},f.prototype.toArray=function(){var m=this,t=Math.pow(10,6);return(m.is2D?[m.a,m.b,m.c,m.d,m.e,m.f]:[m.m11,m.m12,m.m13,m.m14,m.m21,m.m22,m.m23,m.m24,m.m31,m.m32,m.m33,m.m34,m.m41,m.m42,m.m43,m.m44]).map((function(m){return Math.abs(m)<1e-6?0:(m*t>>0)/t}))},f.prototype.toJSON=function(){return JSON.parse(JSON.stringify(this))},f.prototype.multiply=function(m){return u(this,m)},f.prototype.translate=function(m,t,r){var n=t,i=r;return null==i&&(i=0),null==n&&(n=0),u(this,e(m,n,i))},f.prototype.scale=function(m,t,r){var e=t,n=r;return null==e&&(e=m),null==n&&(n=m),u(this,a(m,e,n))},f.prototype.rotate=function(m,t,r){var e=m,i=t,a=r;return null==i&&(i=0),null==a&&(a=e,e=0),u(this,n(e,i,a))},f.prototype.rotateAxisAngle=function(m,t,r,e){if([m,t,r,e].some((function(m){return Number.isNaN(m)})))throw new TypeError("CSSMatrix: expecting 4 values");return u(this,i(m,t,r,e))},f.prototype.skewX=function(m){return u(this,o(m))},f.prototype.skewY=function(m){return u(this,s(m))},f.prototype.transformPoint=function(m){var t=e(m.x,m.y,m.z);return t.m44=m.w||1,{x:(t=this.multiply(t)).m41,y:t.m42,z:t.m43,w:t.m44}},f.prototype.transform=function(m){var t=this,r=t.m11*m.x+t.m12*m.y+t.m13*m.z+t.m14*m.w,e=t.m21*m.x+t.m22*m.y+t.m23*m.z+t.m24*m.w,n=t.m31*m.x+t.m32*m.y+t.m33*m.z+t.m34*m.w,i=t.m41*m.x+t.m42*m.y+t.m43*m.z+t.m44*m.w;return{x:r/i,y:e/i,z:n/i,w:i}},Object.defineProperties(f.prototype,c),f.Translate=e,f.Rotate=n,f.RotateAxisAngle=i,f.Scale=a,f.SkewX=o,f.SkewY=s,f.Multiply=u,f.fromArray=m,f.fromMatrix=t,f.fromString=r,f.Version="0.0.16alpha1",f}));
// DOMMatrix v0.0.16alpha2 | thednp © 2021 | MIT-License
!function(m,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(m="undefined"!=typeof globalThis?globalThis:m||self).CSSMatrix=t()}(this,(function(){"use strict";function m(m){if(!m.every((function(m){return!Number.isNaN(m)})))throw TypeError('CSSMatrix: "'+m+'" must only have numbers.');var t=new f,r=Array.from(m);if(16===r.length){var e=r[0],n=r[1],i=r[2],a=r[3],o=r[4],s=r[5],u=r[6],c=r[7],l=r[8],p=r[9],y=r[10],h=r[11],v=r[12],M=r[13],d=r[14],x=r[15];t.m11=e,t.a=e,t.m21=o,t.c=o,t.m31=l,t.m41=v,t.e=v,t.m12=n,t.b=n,t.m22=s,t.d=s,t.m32=p,t.m42=M,t.f=M,t.m13=i,t.m23=u,t.m33=y,t.m43=d,t.m14=a,t.m24=c,t.m34=h,t.m44=x}else{if(6!==r.length)throw new TypeError("CSSMatrix: expecting an Array of 6/16 values.");var w=r[0],g=r[1],b=r[2],S=r[3],N=r[4],A=r[5];t.m11=w,t.a=w,t.m12=g,t.b=g,t.m21=b,t.c=b,t.m22=S,t.d=S,t.m41=N,t.e=N,t.m42=A,t.f=A}return t}function t(t){if([f,DOMMatrix].some((function(m){return t instanceof m}))||"object"==typeof t&&["m11","m12","m13","m14","m21","m22","m23","m24","m31","m32","m33","m34","m41","m42","m43","m44"].every((function(m){return m in t})))return m([t.m11,t.m12,t.m13,t.m14,t.m21,t.m22,t.m23,t.m24,t.m31,t.m32,t.m33,t.m34,t.m41,t.m42,t.m43,t.m44]);throw TypeError('CSSMatrix: "'+t+'" is not a DOMMatrix / CSSMatrix compatible object.')}function r(t){if("string"!=typeof t)throw TypeError('CSSMatrix: "'+t+'" is not a string.');var r=String(t).replace(/\s/g,""),e=new f;return r.split(")").filter((function(m){return m})).map((function(m){var t=m.split("("),r=t[0],e=t[1].split(",").map((function(m){return m.includes("rad")?parseFloat(m)*(180/Math.PI):parseFloat(m)}));return e[0],e[1],e[2],e[3],{prop:r,components:e}})).forEach((function(t){var r=t.prop,n=t.components,i=n[0],a=n[1],o=n[2],s=n[3],u=[i,a,o],f=[i,a,o,s];if(r.includes("matrix")){var c=n.map((function(m){return Math.abs(m)<1e-6?0:m}));[6,16].includes(c.length)&&(e=e.multiply(m(c)))}else if(["translate","translate3d"].some((function(m){return r===m}))&&i)e=e.translate(i,a||0,o||0);else if("rotate3d"===r&&f.every((function(m){return!Number.isNaN(+m)}))&&s)e=e.rotateAxisAngle(i,a,o,s);else if("scale3d"===r&&u.every((function(m){return!Number.isNaN(+m)}))&&u.some((function(m){return 1!==m})))e=e.scale(i,a,o);else if("rotate"===r&&i)e=e.rotate(0,0,i);else if("scale"!==r||Number.isNaN(i)||1===i){if("skew"===r&&(i||a))e=i?e.skewX(i):e,e=a?e.skewY(a):e;else if(/[XYZ]/.test(r)&&i)if(r.includes("skew"))e=e[r](i);else{var l=r.replace(/[XYZ]/,""),p=r.replace(l,""),y=["X","Y","Z"].indexOf(p),h=[0===y?i:0,1===y?i:0,2===y?i:0];e=e[l].apply(e,h)}}else{var v=Number.isNaN(+a)?i:a;e=e.scale(i,v,1)}})),e}function e(m,t,r){var e=new f;return e.m41=m,e.e=m,e.m42=t,e.f=t,e.m43=r,e}function n(m,t,r){var e=new f,n=Math.PI/180,i=m*n,a=t*n,o=r*n,s=Math.cos(i),u=-Math.sin(i),c=Math.cos(a),l=-Math.sin(a),p=Math.cos(o),y=-Math.sin(o),h=c*p,v=-c*y;e.m11=h,e.a=h,e.m12=v,e.b=v,e.m13=l;var M=u*l*p+s*y;e.m21=M,e.c=M;var d=s*p-u*l*y;return e.m22=d,e.d=d,e.m23=-u*c,e.m31=u*y-s*l*p,e.m32=u*p+s*l*y,e.m33=s*c,e}function i(m,t,r,e){var n=new f,i=e*(Math.PI/360),a=Math.sin(i),o=Math.cos(i),s=a*a,u=Math.sqrt(m*m+t*t+r*r),c=m,l=t,p=r;0===u?(c=0,l=0,p=1):(c/=u,l/=u,p/=u);var y=c*c,h=l*l,v=p*p,M=1-2*(h+v)*s;n.m11=M,n.a=M;var d=2*(c*l*s+p*a*o);n.m12=d,n.b=d,n.m13=2*(c*p*s-l*a*o);var x=2*(l*c*s-p*a*o);n.m21=x,n.c=x;var w=1-2*(v+y)*s;return n.m22=w,n.d=w,n.m23=2*(l*p*s+c*a*o),n.m31=2*(p*c*s+l*a*o),n.m32=2*(p*l*s-c*a*o),n.m33=1-2*(y+h)*s,n}function a(m,t,r){var e=new f;return e.m11=m,e.a=m,e.m22=t,e.d=t,e.m33=r,e}function o(m){var t=new f,r=m*Math.PI/180,e=Math.tan(r);return t.m21=e,t.c=e,t}function s(m){var t=new f,r=m*Math.PI/180,e=Math.tan(r);return t.m12=e,t.b=e,t}function u(t,r){return m([r.m11*t.m11+r.m12*t.m21+r.m13*t.m31+r.m14*t.m41,r.m11*t.m12+r.m12*t.m22+r.m13*t.m32+r.m14*t.m42,r.m11*t.m13+r.m12*t.m23+r.m13*t.m33+r.m14*t.m43,r.m11*t.m14+r.m12*t.m24+r.m13*t.m34+r.m14*t.m44,r.m21*t.m11+r.m22*t.m21+r.m23*t.m31+r.m24*t.m41,r.m21*t.m12+r.m22*t.m22+r.m23*t.m32+r.m24*t.m42,r.m21*t.m13+r.m22*t.m23+r.m23*t.m33+r.m24*t.m43,r.m21*t.m14+r.m22*t.m24+r.m23*t.m34+r.m24*t.m44,r.m31*t.m11+r.m32*t.m21+r.m33*t.m31+r.m34*t.m41,r.m31*t.m12+r.m32*t.m22+r.m33*t.m32+r.m34*t.m42,r.m31*t.m13+r.m32*t.m23+r.m33*t.m33+r.m34*t.m43,r.m31*t.m14+r.m32*t.m24+r.m33*t.m34+r.m34*t.m44,r.m41*t.m11+r.m42*t.m21+r.m43*t.m31+r.m44*t.m41,r.m41*t.m12+r.m42*t.m22+r.m43*t.m32+r.m44*t.m42,r.m41*t.m13+r.m42*t.m23+r.m43*t.m33+r.m44*t.m43,r.m41*t.m14+r.m42*t.m24+r.m43*t.m34+r.m44*t.m44])}var f=function m(){for(var t=[],r=arguments.length;r--;)t[r]=arguments[r];var e=this;if(e.a=1,e.b=0,e.c=0,e.d=1,e.e=0,e.f=0,e.m11=1,e.m12=0,e.m13=0,e.m14=0,e.m21=0,e.m22=1,e.m23=0,e.m24=0,e.m31=0,e.m32=0,e.m33=1,e.m34=0,e.m41=0,e.m42=0,e.m43=0,e.m44=1,t&&t.length){var n=t;return t instanceof Array&&(t[0]instanceof Array&&[16,6].includes(t[0].length)||"string"==typeof t[0]||[m,DOMMatrix].some((function(m){return t[0]instanceof m})))&&(n=t[0]),e.setMatrixValue(n)}return e},c={isIdentity:{configurable:!0},is2D:{configurable:!0}};return c.isIdentity.set=function(m){this.isIdentity=m},c.isIdentity.get=function(){var m=this;return 1===m.m11&&0===m.m12&&0===m.m13&&0===m.m14&&0===m.m21&&1===m.m22&&0===m.m23&&0===m.m24&&0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m41&&0===m.m42&&0===m.m43&&1===m.m44},c.is2D.get=function(){var m=this;return 0===m.m31&&0===m.m32&&1===m.m33&&0===m.m34&&0===m.m43&&1===m.m44},c.is2D.set=function(m){this.is2D=m},f.prototype.setMatrixValue=function(e){return[DOMMatrix,f].some((function(m){return e instanceof m}))?t(e):"string"==typeof e&&e.length&&"none"!==e?r(e):Array.isArray(e)?m(e):this},f.prototype.toString=function(){var m=this.toArray().join(",");return(this.is2D?"matrix":"matrix3d")+"("+m+")"},f.prototype.toArray=function(){var m=this,t=Math.pow(10,6);return(m.is2D?[m.a,m.b,m.c,m.d,m.e,m.f]:[m.m11,m.m12,m.m13,m.m14,m.m21,m.m22,m.m23,m.m24,m.m31,m.m32,m.m33,m.m34,m.m41,m.m42,m.m43,m.m44]).map((function(m){return Math.abs(m)<1e-6?0:(m*t>>0)/t}))},f.prototype.toJSON=function(){return JSON.parse(JSON.stringify(this))},f.prototype.multiply=function(m){return u(this,m)},f.prototype.translate=function(m,t,r){var n=t,i=r;return null==i&&(i=0),null==n&&(n=0),u(this,e(m,n,i))},f.prototype.scale=function(m,t,r){var e=t,n=r;return null==e&&(e=m),null==n&&(n=m),u(this,a(m,e,n))},f.prototype.rotate=function(m,t,r){var e=m,i=t,a=r;return null==i&&(i=0),null==a&&(a=e,e=0),u(this,n(e,i,a))},f.prototype.rotateAxisAngle=function(m,t,r,e){if([m,t,r,e].some((function(m){return Number.isNaN(m)})))throw new TypeError("CSSMatrix: expecting 4 values");return u(this,i(m,t,r,e))},f.prototype.skewX=function(m){return u(this,o(m))},f.prototype.skewY=function(m){return u(this,s(m))},f.prototype.transformPoint=function(m){var t=e(m.x,m.y,m.z);return t.m44=m.w||1,{x:(t=this.multiply(t)).m41,y:t.m42,z:t.m43,w:t.m44}},f.prototype.transform=function(m){var t=this,r=t.m11*m.x+t.m12*m.y+t.m13*m.z+t.m14*m.w,e=t.m21*m.x+t.m22*m.y+t.m23*m.z+t.m24*m.w,n=t.m31*m.x+t.m32*m.y+t.m33*m.z+t.m34*m.w,i=t.m41*m.x+t.m42*m.y+t.m43*m.z+t.m44*m.w;return{x:r/i,y:e/i,z:n/i,w:i}},Object.defineProperties(f.prototype,c),f.Translate=e,f.Rotate=n,f.RotateAxisAngle=i,f.Scale=a,f.SkewX=o,f.SkewY=s,f.Multiply=u,f.fromArray=m,f.fromMatrix=t,f.fromString=r,f.Version="0.0.16alpha2",f}));
{
"name": "dommatrix",
"version": "0.0.16alpha1",
"version": "0.0.16alpha2",
"description": "ES6+ shim for DOMMatrix",

@@ -5,0 +5,0 @@ "main": "dist/dommatrix.js",

@@ -632,4 +632,4 @@ import DMVersion from './version';

* @param {number} x X component of the translation value.
* @param {number} y Y component of the translation value.
* @param {number} z Z component of the translation value.
* @param {?number} y Y component of the translation value.
* @param {?number} z Z component of the translation value.
* @return {CSSMatrix} The resulted matrix

@@ -653,4 +653,4 @@ */

* @param {number} x The X component of the scale value.
* @param {number} y The Y component of the scale value.
* @param {number} z The Z component of the scale value.
* @param {?number} y The Y component of the scale value.
* @param {?number} z The Z component of the scale value.
* @return {CSSMatrix} The resulted matrix

@@ -676,4 +676,4 @@ */

* @param {number} rx The X component of the rotation, or Z if Y and Z are null.
* @param {number} ry The (optional) Y component of the rotation value.
* @param {number} rz The (optional) Z component of the rotation value.
* @param {?number} ry The (optional) Y component of the rotation value.
* @param {?number} rz The (optional) Z component of the rotation value.
* @return {CSSMatrix} The resulted matrix

@@ -732,10 +732,2 @@ */

/**
* @typedef {Object} Tuple
* @property {number} x the `x-axis` component
* @property {number} y the `y-axis` component
* @property {number} z the `z-axis` component
* @property {number} w the `w` component
*/
/**
* Transforms a specified point using the matrix, returning a new

@@ -750,4 +742,4 @@ * Tuple *Object* comprising of the transformed point.

*
* @param {Tuple | DOMPoint} v Tuple or DOMPoint
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple | DOMPoint} v Tuple or DOMPoint
* @return {DMNS.PointTuple} the resulting Tuple
*/

@@ -774,4 +766,4 @@ transformPoint(v) {

*
* @param {Tuple} t Tuple with `{x,y,z,w}` components
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple} t Tuple with `{x,y,z,w}` components
* @return {DMNS.PointTuple} the resulting Tuple
*/

@@ -778,0 +770,0 @@ transform(t) {

@@ -138,7 +138,7 @@ declare module "version" {

* @param {number} x X component of the translation value.
* @param {number} y Y component of the translation value.
* @param {number} z Z component of the translation value.
* @param {?number} y Y component of the translation value.
* @param {?number} z Z component of the translation value.
* @return {CSSMatrix} The resulted matrix
*/
translate(x: number, y: number, z: number): CSSMatrix;
translate(x: number, y: number | null, z: number | null): CSSMatrix;
/**

@@ -151,7 +151,7 @@ * The scale method returns a new matrix which is this matrix post multiplied by

* @param {number} x The X component of the scale value.
* @param {number} y The Y component of the scale value.
* @param {number} z The Z component of the scale value.
* @param {?number} y The Y component of the scale value.
* @param {?number} z The Z component of the scale value.
* @return {CSSMatrix} The resulted matrix
*/
scale(x: number, y: number, z: number): CSSMatrix;
scale(x: number, y: number | null, z: number | null): CSSMatrix;
/**

@@ -165,7 +165,7 @@ * The rotate method returns a new matrix which is this matrix post multiplied

* @param {number} rx The X component of the rotation, or Z if Y and Z are null.
* @param {number} ry The (optional) Y component of the rotation value.
* @param {number} rz The (optional) Z component of the rotation value.
* @param {?number} ry The (optional) Y component of the rotation value.
* @param {?number} rz The (optional) Z component of the rotation value.
* @return {CSSMatrix} The resulted matrix
*/
rotate(rx: number, ry: number, rz: number): CSSMatrix;
rotate(rx: number, ry: number | null, rz: number | null): CSSMatrix;
/**

@@ -201,9 +201,2 @@ * The rotateAxisAngle method returns a new matrix which is this matrix post

/**
* @typedef {Object} Tuple
* @property {number} x the `x-axis` component
* @property {number} y the `y-axis` component
* @property {number} z the `z-axis` component
* @property {number} w the `w` component
*/
/**
* Transforms a specified point using the matrix, returning a new

@@ -218,40 +211,6 @@ * Tuple *Object* comprising of the transformed point.

*
* @param {Tuple | DOMPoint} v Tuple or DOMPoint
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple | DOMPoint} v Tuple or DOMPoint
* @return {DMNS.PointTuple} the resulting Tuple
*/
transformPoint(v: DOMPoint | {
/**
* the `x-axis` component
*/
x: number;
/**
* the `y-axis` component
*/
y: number;
/**
* the `z-axis` component
*/
z: number;
/**
* the `w` component
*/
w: number;
}): {
/**
* the `x-axis` component
*/
x: number;
/**
* the `y-axis` component
*/
y: number;
/**
* the `z-axis` component
*/
z: number;
/**
* the `w` component
*/
w: number;
};
transformPoint(v: DMNS.PointTuple | DOMPoint): DMNS.PointTuple;
/**

@@ -262,40 +221,6 @@ * Transforms a specified vector using the matrix, returning a new

*
* @param {Tuple} t Tuple with `{x,y,z,w}` components
* @return {Tuple} the resulting Tuple
* @param {DMNS.PointTuple} t Tuple with `{x,y,z,w}` components
* @return {DMNS.PointTuple} the resulting Tuple
*/
transform(t: {
/**
* the `x-axis` component
*/
x: number;
/**
* the `y-axis` component
*/
y: number;
/**
* the `z-axis` component
*/
z: number;
/**
* the `w` component
*/
w: number;
}): {
/**
* the `x-axis` component
*/
x: number;
/**
* the `y-axis` component
*/
y: number;
/**
* the `z-axis` component
*/
z: number;
/**
* the `w` component
*/
w: number;
};
transform(t: DMNS.PointTuple): DMNS.PointTuple;
}

@@ -302,0 +227,0 @@ namespace CSSMatrix {

@@ -26,2 +26,9 @@ export type jsonMatrix = {

export type PointTuple = {
x: number,
y: number,
z: number,
w: number,
}
export as namespace DMNS;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc