Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
An ES6+ sourced DOMMatrix shim for Node.js apps and legacy browsers. Since this source is modernized, legacy browsers might need some additional shims.
The constructor is almost equivalent with the DOMMatrix in many respects, but tries to keep a sense of simplicity. In that note, we haven't implemented DOMMatrixReadOnly methods like flipX()
or inverse()
or aliases for the main methods like translateSelf
or the old rotate3d
.
npm install dommatrix
Link available on jsdelivr.
Main instance methods described in the MDN specifications.
The translate method returns a new matrix which is this matrix post multiplied by a translation matrix containing the passed values. If the z
parameter is undefined, a 0 value is used in its place. This matrix is not
modified.
Parameters:
x
the X axis component of the translation value.y
the Y axis component of the translation value.z
the Z axis component of the translation value.The rotate method returns a new matrix which is this matrix post multiplied by each of 3 rotation matrices about the major axes, first X, then Y, then Z. If the y
and z
components are undefined, the x
value is used to rotate the
object about the z
axis, as though the vector (0,0,x) were passed. All rotation values are expected to be in degrees. This matrix is not modified.
Parameters:
rx
the X axis component of the rotation value.ry
the Y axis component of the rotation value.rz
the Z axis component of the rotation value.This method returns a new matrix which is this matrix post multiplied by a rotation matrix with the given axis and angle
. The right-hand rule is used to determine the direction of rotation. All rotation values are
in degrees. This matrix is not modified.
Parameters:
x
The X component of the axis vector.y
The Y component of the axis vector.z
The Z component of the axis vector.angle
The angle of rotation about the axis vector, in degrees.The scale method returns a new matrix which is this matrix post multiplied by a scale matrix containing the passed values. If the z
component is undefined, a 1 value is used in its place. If the y
component is undefined, the x
component value is used in its place. This matrix is not modified.
Parameters:
x
the X axis component of the scale value.y
the Y axis component of the scale value.z
the Z axis component of the scale value.Specifies a skew transformation along the x-axis
by the given angle. This matrix is not modified.
The angle
parameter sets the amount in degrees to skew.
Specifies a skew transformation along the y-axis
by the given angle. This matrix is not modified.
The angle
parameter sets the amount in degrees to skew.
Creates and returns a string representation of the matrix in CSS matrix syntax, using the appropriate CSS matrix notation. The 16 items in the array 3D matrix array are transposed in row-major order.
Depending on the value of is2D
, the method will return the CSS matrix syntax in one of the two formats:
matrix3d(m11,m12,m13,m14,m21,m22,m23,m24,m31,m32,m33,m34,m41,m42,m43,m44)
matrix(a, b, c, d, e, f)
The multiply method returns a new CSSMatrix
which is the result of this matrix multiplied by the passed matrix, with the passed matrix to the right. This matrix as well as the one passed are not modified.
The m2
parameter is expecting a CSSMatrix
or DOMMatrix
instance.
This method replaces the existing matrix with one computed in the browser. EG: matrix(1,0.25,-0.25,1,0,0)
.
The method also accepts 6/16 elements Float64Array / Float32Array / Array values, the result of CSSMatrix
=> toArray()
/ DOMMatrix
=> toFloat64Array()
/ toFloat32Array()
.
For simplicity reasons, this method expects only valid matrix() / matrix3d() string values, which means other transform functions like translate(), rotate() are not supported.
Parameter:
source
parameter can be the String representing the CSS syntax of the matrix, which is also the result of getComputedStyle()
.source
can also be an Array resulted from toArray()
method calls.Set the current CSSMatrix
instance to the identity form and returns it.
Transforms the specified point using the matrix, returning a new DOMPoint
like Object containing the transformed point.
Neither the matrix nor the original point are altered.
The method is equivalent with transformPoint()
method of the DOMMatrix
constructor.
The point
parameter expects a DOMPoint
or an Object with x
, y
, z
and w
components.
Transforms the specified vector using the matrix, returning a new {x,y,z,w}
Object comprising the transformed vector.
Neither the matrix nor the original vector are altered. This method was in the original source and I chose to keep it.
The vector
parameter expects an Object with x
, y
, z
and w
components.
Returns an Array containing all 16 elements which comprise the 3D matrix. The method can return either the elements in default column major order or row major order (what we call the transposed matrix, used by toString
).
If the matrix attribute is2D
is true
, the 6 elements array matrix is returned.
Other methods make use of this method to feed their output values from this matrix.
The transposed
parameter changes the order of the elements in the output. By default the column major order is used, which is the standard representation of a typical 4x4 3D transformation matrix, however the CSS
syntax requires the row major order, so we can set this parameter to true
to facilitate that.
There are also toFloat64Array() and toFloat32Array() which return a new Float64Array
/ Float32Array
containing all 6/16 elements which comprise the matrix. The elements are stored into the array as double-precision floating-point numbers (Float64Array
) or single-precision floating-point numbers (Float32Array
), in column-major (colexographical access access or "colex") order. These last two methods are not yet present in the prototype, but are ready to go.
The result can be immediatelly fed as parameter for the initialization of a new matrix.
A Boolean
whose value is true
if the matrix is the identity matrix. The identity matrix is one in which every value is 0 except those on the main diagonal from top-left to bottom-right corner (in other words, where the offsets in each direction are equal).
A Boolean
flag whose value is true
if the matrix was initialized as a 2D matrix and false
if the matrix is 3D.
The methods attached to the CSSMatrix
Object but not included in the constructor prototype. Some methods aim to be equivalents while others provide utility.
Creates a new mutable CSSMatrix
object given an existing matrix or a DOMMatrix
Object which provides the values for its properties. The m2
parameter is the matrix instance passed into the method and neither this matrix or the one passed are modified.
Creates a new mutable CSSMatrix
object given an array of values. If the array has six values, the result is a 2D matrix; if the array has 16 values, the result is a 3D matrix. Otherwise, a console.error
is thrown and returns the current matrix.
The array
parameter is the source to feed the values for the new matrix.
There are two more methods fromFloat64Array(array) and fromFloat32Array(array) which are only aliases for fromArray
for now, but will be updated accordingly once DOMMatrix API is final.
Feed a CSSMatrix
object with the values of a 6/16 values array and returns the updated matrix.
The array
parameter is the source to feed the values for the new matrix.
The initialization doesn't support CSS syntax strings with transform functions like rotate()
or translate()
only matrix()
and matrix3d()
, or 6/16 elements arrays.
// ES6+
import CSSMatrix from 'dommatrix'
// init
let myMatrix = new CSSMatrix('matrix(1,0.25,-0.25,1,0,0)')
OR
// Node.js
var CSSMatrix = require('dommatrix');
// init
let myMatrix = new CSSMatrix('matrix(1,0.25,-0.25,1,0,0)')
// the above are equivalent with providing the values are arguments
let myMatrix = new CSSMatrix(1,0.25,-0.25,1,0,0)
// or by providing an Array, Float32Array, Float64Array
let myMatrix = new CSSMatrix([1,0.25,-0.25,1,0,0])
let myTranlateMatrix = new CSSMatrix(1,0,0,1,150,150)
// fromMatrix will create a clone of the above matrix
let myMatrix = CSSMatrix.fromMatrix(myTranlateMatrix)
// create a new CSSMatrix from an Array, Float32Array, Float64Array
let myMatrix = CSSMatrix.fromArray([1,0.25,-0.25,1,0,0])
// call methods to apply transformations
let myMatrix = new CSSMatrix().translate(15)
// equivalent to
let myMatrix = new CSSMatrix().translate(15,0)
// equivalent to
let myMatrix = new CSSMatrix().translate(15,0,0)
// rotations work as expected
let myMatrix = new CSSMatrix().rotate(15)
// equivalent to
let myMatrix = new CSSMatrix().rotate(0,0,15)
// reset the matrix to identity form
// the equivalent of the CSS "transform: none"
myMatrix.setIdentity()
// replace existing matrix with values from array
// it's best to use the above setIdentity() before
// replacing the current matrix or feed from a 16 values Array
CSSMatrix.feedFromArray(myMatrix, [1,0.25,-0.25,1,0,0])
// replace existing matrix with values from array
// as if your're re-initializing the matrix
myMatrix.setMatrixValue(1,0.25,-0.25,1,0,0)
// apply additional transformations to an existing matrix
// by calling instance methods
myMatrix = myMatrix.translate(15).skewX(45)
// apply additional transformations to an existing matrix
// by calling a static method to create a new matrix;
// the result of the multiply instance method and
// the result of the Rotate static method combined create
// a third CSSMatrix instance that replaces the original
// matrix entirely
myMatrix = myMatrix.multiply(CSSMatrix.Rotate(0,45))
Calling the transform function instance methods (translate,rotate) after initialization will not change the instance Object unless you put the "=" sign between your instance name and the return of the call. Only setIdentity
and setMatrixValue
instance methods as well as the feedFromArray
static method can do that.
// export to the CSS syntax transform
let myMatrix = new CSSMatrix().translate(15).toString()
// export to Array
let myMatrix = new CSSMatrix().rotate(45).toArray()
// if the matrix is 3D you can also export a transposed matrix array
// which is compatible with the CSS syntax row major order representation
let myMatrix = new CSSMatrix().translate(15,0,0).toArray(true)
import CSSMatrix from 'dommatrix'
// perspective
let perspective = 400
// init
let myMatrix = new CSSMatrix()
// set perspective
myMatrix.m34 = -1/perspective
// now your matrix is always 3D
// we can apply any 3D transformation
myMatrix = myMatrix.rotate(45,0,0)
// this matrix is now equivalent with this
// CSS transformation syntax
// perspective(400px) rotateX(45deg)
In contrast with the original source there have been a series of changes to the prototype for consistency, performance as well as requirements to better accomodate the DOMMatrix interface:
toFloat64Array()
of the DOMMatrix constructor (which also returns items in the expected order);afine
property at initialization only and based on the number of arguments or the type of the input CSS transform syntax;translate()
, scale()
and rotate()
instance methods to work with one axis transformation, also inline with DOMMatrix;toString()
instance method to utilize the new method toArray()
described below;setMatrixValue()
instance method to do all the heavy duty work with parameters;afine
property, it's a very old WebKitCSSMatrix defined property;inverse()
instance method, will be re-added later for other implementations (probably going to be accompanied by determinant()
, transpose()
and others);toFullString()
instance method, probably something also from WebKitCSSMatrix;is2D
(getter and setter) property;isIdentity
(getter and setter) property;feedFromArray
static method, not present in the constructor prototype;fromMatrix
static method, not present in the constructor prototype;fromArray()
, fromFloat64Array()
and fromFloat32Array()
static methods, not present in the constructor prototype, the last 2 are not published since fromArray()
can also process Float32Array / Float64Array via Array.from()
;toArray()
, toFloat64Array()
and toFloat32Array()
instance methods, the last two are not present in the constructor prototype;transformPoint()
instance method which works like the original.DOMMatrix shim is MIT Licensed.
FAQs
ES6+ shim for DOMMatrix
The npm package dommatrix receives a total of 366,257 weekly downloads. As such, dommatrix popularity was classified as popular.
We found that dommatrix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.