All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vectomatic.dom.svg.impl.getTransformToElement.js Maven / Gradle / Ivy

There is a newer version: 0.5.15
Show newest version
// getTransformToElement() polyfill
// courtesy of http://jointjs.com/blog/get-transform-to-element-polyfill.html
	
(function() { "use strict";
SVGElement.prototype.getTransformToElement = SVGElement.prototype.getTransformToElement || function(toElement) {
    return toElement.getScreenCTM().inverse().multiply(this.getScreenCTM());
};
}());




© 2015 - 2024 Weber Informatics LLC | Privacy Policy