npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

mtrxyz

v0.9.2

Published

A helper for 3D and 2D matrix transformations

Downloads

156

Readme

npm version gzipped size minified size license CDN CDN

mtrXYZ

A helper for 3D and 2D matrix transformations

Usage

Install

<script src="https://cdn.jsdelivr.net/npm/mtrxyz@latest/dist/MtrXYZ.min.js" defer></script>

If you need to transform SVG path data please also load the pathdata addon

<script src="https://cdn.jsdelivr.net/npm/mtrxyz@latest/dist/MtrXYZ_pathdata.min.js" defer></script>

Create Matrix

MatriXYZ replicates CSS transformation properties allowing multiple chained tranformations. Basically, you use the typical main transformation properties:

  • translate
  • scale
  • skew
  • rotate

Besides, you can specify a transform-origin as well as a perspective-origin and perspective value fo a full 3D transformation projection.

// create 3D transformation object
let transformOptions = {
    // add chainable option analogous to CSS
    transforms: [
        { translate: [translateX, translateY, translateZ] },
        { scale: [scaleX, scaleY, scaleZ] },
        { skew: [skewX, skewY] },
        { rotate: [rotateX, rotateY, rotateZ] },
    ],
    transFormOrigin: { x: transformOriginX, y: transformOriginY },
    perspectiveOrigin: { x: perspectiveOriginX, y: perspectiveOriginY },
    perspective: perspective,
    force3D: force3D
}

/**
* create matrix
*/
let matrix = new MatriXYZ.Mtx(transformOptions);

The above example creates a 3D matrix based on the specified parameters.
new MatriXYZ.Mtx(transformOptions) creates a custom matrix object we can reuse for point projections.

Point transformation/projection

Once we got a matrix, we can apply it to multiple point arrays like:

  • point object arrays [{x:10, y:10, z:10}] – yeah 3D points are supported
  • nested point arrays [[10, 10]]
  • SVG pathData like M20.1 120.8 L20.1 120.8 Q11.2 120.8 5.6 117.4 Q0 114 0 107.7 – requires the pathdata addon

Get tranformed/projected points


let points = [[50,85.2],[83.4,57.4],[95.4,43],[100,25],[92.7,7.4],[75,0.1],[57.3,7.4],[50,25],[42.7,7.4],[25,0.1],[7.3,7.4],[0,25],[4.5,43.1],[16.6,57.4],[50,85.2]];

let ptsTransformed = matrix.transformPoints(points, decimals)

Get tranformed/projected SVG pathData

let pathdata = 'M50 85.2 83.4 57.4 95.4 43 100 25 92.7 7.4 75 0.1 57.3 7.4 50 25 42.7 7.4 25 0.1 7.3 7.4 0 25 4.5 43.1 16.6 57.4 50 85.2'
let pathDataTransformed = matrix.transformPathData(pathdata, decimals)

// optimize output
let options = {
    // round to decimals
    decimals:3, 

    // convert to relative commands
    toRelative:true, 

    // try to apply shorthand commands
    toShorthands:true, 

    // convert arcs to cubic beziers (automatically applied for 3D transforms)
    arcToCubic:false
}
let pathDataOpt = MatriXYZ.pathDataToD(pathDataTransformed, options)


// stringify to d attribute
let d = MatriXYZ.pathDataToD(pathDataOpt)

Order of tranformations matters!

We use the same logic as CSS – so transformations are applied from right(last) to left(first). This also allows you to chain transforms the same way as in CSS.

// 2D transformation
let transformOptions = {
    transforms: [
        { translate: [10, 30] },
        { scale: [1.5, 1.75] },
        { skew: [10, 15] },
        { rotate: [45] },
        // 2nd translate
        { translate: [5, 8] },
    ],
}

translates to CSS:

transform: translateX(10px) translateY(30px) scaleX(1.5) scaleY(1.75) rotate(45deg) translateX(5px) translateY(8px);

All properties support 2D and 3D structures – so 1 to 3 values.
CSS only supports skewX and skewY – so there is no skewZ. A single value for rotate is automatically interpreted as rotateZ – resulting in a 2D rotation.

Credits