27 lines
399 B
JavaScript
27 lines
399 B
JavaScript
/**
|
|
* Coords.
|
|
*
|
|
* Licensed under the MIT License
|
|
*
|
|
*/
|
|
|
|
// Dependencies:
|
|
// 1) svgtransformlist.js
|
|
// 2) math.js
|
|
// 3) svgutils.js
|
|
// 4) jquery.js
|
|
// 5) history.js
|
|
|
|
var svgedit = svgedit || {};
|
|
|
|
(function() {
|
|
|
|
if (!svgedit.coords) {
|
|
svgedit.coords = {};
|
|
}
|
|
|
|
// TODO: Move remapElement() into here.
|
|
// TODO: Move updateClipPath() into here.
|
|
// TODO: Move recalculateDimensions() into here.
|
|
|
|
})(); |