├── .gitignore ├── LICENSE ├── README.md ├── README_KR.md ├── bin ├── build.js └── test.client.js ├── doc ├── API.md ├── API_KR.md ├── CONTRIBUTING.md ├── CONTRIBUTING_KR.md ├── FUNCTION_INTERFACE.md ├── FUNCTION_INTERFACE_KR.md ├── TEST.md └── TEST_KR.md ├── package.json ├── src ├── Errors │ ├── CustomError.js │ └── IllegalArgumentError.js ├── LiveRotateTransform │ ├── LiveRotateTransform.index.js │ ├── LiveRotateTransform.spec.js │ └── README.md ├── LiveScaleTransform │ ├── LiveScaleTransform.index.js │ ├── LiveScaleTransform.spec.js │ └── README.md ├── LiveScaleTransform2 │ ├── LiveScaleTransform2.index.js │ ├── LiveScaleTransform2.spec.js │ └── README.md ├── LiveTransform │ ├── LiveTransform.index.js │ ├── LiveTransform.spec.js │ └── README.md ├── LiveTransformHandler │ ├── LiveTransformHandler.index.js │ ├── LiveTransformHandler.spec.js │ └── README.md ├── LiveTranslateTransform │ ├── LiveTranslateTransform.index.js │ ├── LiveTranslateTransform.spec.js │ └── README.md ├── appendRotateTransform │ ├── README.md │ ├── appendRotateTransform.index.js │ └── appendRotateTransform.spec.js ├── appendTranslateTransform │ ├── README.md │ ├── appendTranslateTransform.index.js │ └── appendTranslateTransform.spec.js ├── consolidateTransformList │ ├── README.md │ ├── consolidateTransformList.index.js │ └── consolidateTransformList.spec.js ├── convertClientToUserCoords │ ├── README.md │ ├── convertClientToUserCoords.index.js │ └── convertClientToUserCoords.spec.js ├── createSVGMatrix │ ├── README.md │ ├── createSVGMatrix.index.js │ └── createSVGMatrix.spec.js ├── createSVGPoint │ ├── README.md │ ├── createSVGPoint.index.js │ └── createSVGPoint.spec.js ├── createSVGRect │ ├── README.md │ ├── createSVGRect.index.js │ └── createSVGRect.spec.js ├── createSVGTransform │ ├── README.md │ ├── createSVGTransform.index.js │ └── createSVGTransform.spec.js ├── createSVGTransformMatrix │ ├── README.md │ ├── createSVGTransformMatrix.index.js │ └── createSVGTransformMatrix.spec.js ├── createSVGTransformRotate │ ├── README.md │ ├── createSVGTransformRotate.index.js │ └── createSVGTransformRotate.spec.js ├── createSVGTransformScale │ ├── README.md │ ├── createSVGTransformScale.index.js │ └── createSVGTransformScale.spec.js ├── createSVGTransformTranslate │ ├── README.md │ ├── createSVGTransformTranslate.index.js │ └── createSVGTransformTranslate.spec.js ├── el │ ├── README.md │ ├── el.index.js │ └── el.spec.js ├── els │ ├── README.md │ ├── els.index.js │ └── els.spec.js ├── fxsvg.js ├── getAnimTransformList │ ├── README.md │ ├── getAnimTransformList.index.js │ └── getAnimTransformList.spec.js ├── getAttrNS │ ├── README.md │ ├── getAttrNS.index.js │ └── getAttrNS.spec.js ├── getBaseTransformList │ ├── README.md │ ├── getBaseTransformList.index.js │ └── getBaseTransformList.spec.js ├── getBoundingPoints │ ├── README.md │ ├── getBoundingPoints.index.js │ └── getBoundingPoints.spec.js ├── getBoxPoints │ ├── README.md │ ├── getBoxPoints.index.js │ └── getBoxPoints.spec.js ├── getCenterPoint │ ├── README.md │ ├── getCenterPoint.index.js │ └── getCenterPoint.spec.js ├── getConsolidatedTransformMatrix │ ├── README.md │ ├── getConsolidatedTransformMatrix.index.js │ └── getConsolidatedTransformMatrix.spec.js ├── getSetSVG │ ├── getSetSVG.index.js │ └── getSetSVG.spec.js ├── hasAttrNS │ ├── README.md │ ├── hasAttrNS.index.js │ └── hasAttrNS.spec.js ├── index.js ├── initMatrixTransform │ ├── README.md │ ├── initMatrixTransform.index.js │ └── initMatrixTransform.spec.js ├── initRotateTransform │ ├── README.md │ ├── initRotateTransform.index.js │ └── initRotateTransform.spec.js ├── initScaleTransform │ ├── README.md │ ├── initScaleTransform.index.js │ └── initScaleTransform.spec.js ├── initTranslateTransform │ ├── README.md │ ├── initTranslateTransform.index.js │ └── initTranslateTransform.spec.js ├── isIdentityMatrix │ ├── README.md │ ├── isIdentityMatrix.index.js │ └── isIdentityMatrix.spec.js ├── isMatrixSVGTransform │ ├── README.md │ ├── isMatrixSVGTransform.index.js │ └── isMatrixSVGTransform.spec.js ├── isRotateSVGTransform │ ├── README.md │ ├── isRotateSVGTransform.index.js │ └── isRotateSVGTransform.spec.js ├── isSVGTransform │ ├── README.md │ ├── isSVGTransform.index.js │ └── isSVGTransform.spec.js ├── isScaleSVGTransform │ ├── README.md │ ├── isScaleSVGTransform.index.js │ └── isScaleSVGTransform.spec.js ├── isTranslateSVGTransform │ ├── README.md │ ├── isTranslateSVGTransform.index.js │ └── isTranslateSVGTransform.spec.js ├── isValidFxScaleSVGTransformList │ ├── README.md │ ├── isValidFxScaleSVGTransformList.index.js │ └── isValidFxScaleSVGTransformList.spec.js ├── joinPathData │ ├── README.md │ ├── joinPathData.index.js │ └── joinPathData.spec.js ├── mergeRotateTransform │ ├── README.md │ ├── mergeRotateTransform.index.js │ └── mergeRotateTransform.spec.js ├── mergeScaleTransform │ ├── README.md │ ├── mergeScaleTransform.index.js │ └── mergeScaleTransform.spec.js ├── mergeScaleTransform2 │ ├── README.md │ ├── mergeScaleTransform2.index.js │ └── mergeScaleTransform2.spec.js ├── mergeTranslateTransform │ ├── README.md │ ├── mergeTranslateTransform.index.js │ └── mergeTranslateTransform.spec.js ├── parsePathData │ ├── README.md │ ├── const.js │ ├── parsePathData.index.js │ └── parsePathData.spec.js ├── removeAttrNS │ ├── README.md │ ├── removeAttrNS.index.js │ └── removeAttrNS.spec.js ├── setAttrNS │ ├── README.md │ ├── setAttrNS.index.js │ └── setAttrNS.spec.js ├── updateMatrixTransform │ ├── README.md │ ├── updateMatrixTransform.index.js │ └── updateMatrixTransform.spec.js ├── updateRotateTransform │ ├── README.md │ ├── updateRotateTransform.index.js │ └── updateRotateTransform.spec.js ├── updateScaleTransform │ ├── README.md │ ├── updateScaleTransform.index.js │ └── updateScaleTransform.sepc.js └── updateTranslateTransform │ ├── README.md │ ├── updateTranslateTransform.index.js │ └── updateTranslateTransform.spec.js └── test ├── assertions ├── expectSameNumberEpsilon.js ├── expectSameValueSVGMatrix.js ├── expectSameValueSVGTransform.js ├── expectTransformWithRotateAngleCxCy.js ├── expectTransformWithScaleSxSy.js ├── expectTransformWithTranslateTxTy.js └── index.js ├── index.html ├── index.json.html ├── mount_fxsvg_in_browser.js ├── playground.html ├── run_tests_in_browser.js ├── server.js ├── spec.js └── utils ├── deepCopyTransformList.js ├── index.js ├── makeAllCombinations.js ├── makeMockRect.js ├── makeMockRectInitializedRotateTransform.js ├── makeMockRectInitializedScaleTransform.js ├── makeMockRectInitializedTranslateTransform.js ├── makeRandomBool.js ├── makeRandomInt.js ├── makeRandomNumber.js ├── makeRandomNumberExcept.js ├── makeRandomSVGMatrix.js ├── makeRandomSVGTransformMatrix.js ├── makeRandomSVGTransformRotate.js ├── makeRandomSVGTransformScale.js ├── makeRandomSVGTransformTranslate.js ├── makeRandomTransformAttributeValue.js ├── makeRandomTransformString.js └── makeRandomTransformStringList.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/README.md -------------------------------------------------------------------------------- /README_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/README_KR.md -------------------------------------------------------------------------------- /bin/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/bin/build.js -------------------------------------------------------------------------------- /bin/test.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/bin/test.client.js -------------------------------------------------------------------------------- /doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/API.md -------------------------------------------------------------------------------- /doc/API_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/API_KR.md -------------------------------------------------------------------------------- /doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/CONTRIBUTING_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/CONTRIBUTING_KR.md -------------------------------------------------------------------------------- /doc/FUNCTION_INTERFACE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/FUNCTION_INTERFACE.md -------------------------------------------------------------------------------- /doc/FUNCTION_INTERFACE_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/FUNCTION_INTERFACE_KR.md -------------------------------------------------------------------------------- /doc/TEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/TEST.md -------------------------------------------------------------------------------- /doc/TEST_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/doc/TEST_KR.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/package.json -------------------------------------------------------------------------------- /src/Errors/CustomError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/Errors/CustomError.js -------------------------------------------------------------------------------- /src/Errors/IllegalArgumentError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/Errors/IllegalArgumentError.js -------------------------------------------------------------------------------- /src/LiveRotateTransform/LiveRotateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveRotateTransform/LiveRotateTransform.index.js -------------------------------------------------------------------------------- /src/LiveRotateTransform/LiveRotateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveRotateTransform/LiveRotateTransform.spec.js -------------------------------------------------------------------------------- /src/LiveRotateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveRotateTransform/README.md -------------------------------------------------------------------------------- /src/LiveScaleTransform/LiveScaleTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveScaleTransform/LiveScaleTransform.index.js -------------------------------------------------------------------------------- /src/LiveScaleTransform/LiveScaleTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveScaleTransform/LiveScaleTransform.spec.js -------------------------------------------------------------------------------- /src/LiveScaleTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveScaleTransform/README.md -------------------------------------------------------------------------------- /src/LiveScaleTransform2/LiveScaleTransform2.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveScaleTransform2/LiveScaleTransform2.index.js -------------------------------------------------------------------------------- /src/LiveScaleTransform2/LiveScaleTransform2.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveScaleTransform2/LiveScaleTransform2.spec.js -------------------------------------------------------------------------------- /src/LiveScaleTransform2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveScaleTransform2/README.md -------------------------------------------------------------------------------- /src/LiveTransform/LiveTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTransform/LiveTransform.index.js -------------------------------------------------------------------------------- /src/LiveTransform/LiveTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTransform/LiveTransform.spec.js -------------------------------------------------------------------------------- /src/LiveTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTransform/README.md -------------------------------------------------------------------------------- /src/LiveTransformHandler/LiveTransformHandler.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTransformHandler/LiveTransformHandler.index.js -------------------------------------------------------------------------------- /src/LiveTransformHandler/LiveTransformHandler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTransformHandler/LiveTransformHandler.spec.js -------------------------------------------------------------------------------- /src/LiveTransformHandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTransformHandler/README.md -------------------------------------------------------------------------------- /src/LiveTranslateTransform/LiveTranslateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTranslateTransform/LiveTranslateTransform.index.js -------------------------------------------------------------------------------- /src/LiveTranslateTransform/LiveTranslateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTranslateTransform/LiveTranslateTransform.spec.js -------------------------------------------------------------------------------- /src/LiveTranslateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/LiveTranslateTransform/README.md -------------------------------------------------------------------------------- /src/appendRotateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/appendRotateTransform/README.md -------------------------------------------------------------------------------- /src/appendRotateTransform/appendRotateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/appendRotateTransform/appendRotateTransform.index.js -------------------------------------------------------------------------------- /src/appendRotateTransform/appendRotateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/appendRotateTransform/appendRotateTransform.spec.js -------------------------------------------------------------------------------- /src/appendTranslateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/appendTranslateTransform/README.md -------------------------------------------------------------------------------- /src/appendTranslateTransform/appendTranslateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/appendTranslateTransform/appendTranslateTransform.index.js -------------------------------------------------------------------------------- /src/appendTranslateTransform/appendTranslateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/appendTranslateTransform/appendTranslateTransform.spec.js -------------------------------------------------------------------------------- /src/consolidateTransformList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/consolidateTransformList/README.md -------------------------------------------------------------------------------- /src/consolidateTransformList/consolidateTransformList.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/consolidateTransformList/consolidateTransformList.index.js -------------------------------------------------------------------------------- /src/consolidateTransformList/consolidateTransformList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/consolidateTransformList/consolidateTransformList.spec.js -------------------------------------------------------------------------------- /src/convertClientToUserCoords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/convertClientToUserCoords/README.md -------------------------------------------------------------------------------- /src/convertClientToUserCoords/convertClientToUserCoords.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/convertClientToUserCoords/convertClientToUserCoords.index.js -------------------------------------------------------------------------------- /src/convertClientToUserCoords/convertClientToUserCoords.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/convertClientToUserCoords/convertClientToUserCoords.spec.js -------------------------------------------------------------------------------- /src/createSVGMatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGMatrix/README.md -------------------------------------------------------------------------------- /src/createSVGMatrix/createSVGMatrix.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGMatrix/createSVGMatrix.index.js -------------------------------------------------------------------------------- /src/createSVGMatrix/createSVGMatrix.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGMatrix/createSVGMatrix.spec.js -------------------------------------------------------------------------------- /src/createSVGPoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGPoint/README.md -------------------------------------------------------------------------------- /src/createSVGPoint/createSVGPoint.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGPoint/createSVGPoint.index.js -------------------------------------------------------------------------------- /src/createSVGPoint/createSVGPoint.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGPoint/createSVGPoint.spec.js -------------------------------------------------------------------------------- /src/createSVGRect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGRect/README.md -------------------------------------------------------------------------------- /src/createSVGRect/createSVGRect.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGRect/createSVGRect.index.js -------------------------------------------------------------------------------- /src/createSVGRect/createSVGRect.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGRect/createSVGRect.spec.js -------------------------------------------------------------------------------- /src/createSVGTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransform/README.md -------------------------------------------------------------------------------- /src/createSVGTransform/createSVGTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransform/createSVGTransform.index.js -------------------------------------------------------------------------------- /src/createSVGTransform/createSVGTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransform/createSVGTransform.spec.js -------------------------------------------------------------------------------- /src/createSVGTransformMatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformMatrix/README.md -------------------------------------------------------------------------------- /src/createSVGTransformMatrix/createSVGTransformMatrix.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformMatrix/createSVGTransformMatrix.index.js -------------------------------------------------------------------------------- /src/createSVGTransformMatrix/createSVGTransformMatrix.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformMatrix/createSVGTransformMatrix.spec.js -------------------------------------------------------------------------------- /src/createSVGTransformRotate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformRotate/README.md -------------------------------------------------------------------------------- /src/createSVGTransformRotate/createSVGTransformRotate.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformRotate/createSVGTransformRotate.index.js -------------------------------------------------------------------------------- /src/createSVGTransformRotate/createSVGTransformRotate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformRotate/createSVGTransformRotate.spec.js -------------------------------------------------------------------------------- /src/createSVGTransformScale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformScale/README.md -------------------------------------------------------------------------------- /src/createSVGTransformScale/createSVGTransformScale.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformScale/createSVGTransformScale.index.js -------------------------------------------------------------------------------- /src/createSVGTransformScale/createSVGTransformScale.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformScale/createSVGTransformScale.spec.js -------------------------------------------------------------------------------- /src/createSVGTransformTranslate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformTranslate/README.md -------------------------------------------------------------------------------- /src/createSVGTransformTranslate/createSVGTransformTranslate.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformTranslate/createSVGTransformTranslate.index.js -------------------------------------------------------------------------------- /src/createSVGTransformTranslate/createSVGTransformTranslate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/createSVGTransformTranslate/createSVGTransformTranslate.spec.js -------------------------------------------------------------------------------- /src/el/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/el/README.md -------------------------------------------------------------------------------- /src/el/el.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/el/el.index.js -------------------------------------------------------------------------------- /src/el/el.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/el/el.spec.js -------------------------------------------------------------------------------- /src/els/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/els/README.md -------------------------------------------------------------------------------- /src/els/els.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/els/els.index.js -------------------------------------------------------------------------------- /src/els/els.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/els/els.spec.js -------------------------------------------------------------------------------- /src/fxsvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/fxsvg.js -------------------------------------------------------------------------------- /src/getAnimTransformList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getAnimTransformList/README.md -------------------------------------------------------------------------------- /src/getAnimTransformList/getAnimTransformList.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getAnimTransformList/getAnimTransformList.index.js -------------------------------------------------------------------------------- /src/getAnimTransformList/getAnimTransformList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getAnimTransformList/getAnimTransformList.spec.js -------------------------------------------------------------------------------- /src/getAttrNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getAttrNS/README.md -------------------------------------------------------------------------------- /src/getAttrNS/getAttrNS.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getAttrNS/getAttrNS.index.js -------------------------------------------------------------------------------- /src/getAttrNS/getAttrNS.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getAttrNS/getAttrNS.spec.js -------------------------------------------------------------------------------- /src/getBaseTransformList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBaseTransformList/README.md -------------------------------------------------------------------------------- /src/getBaseTransformList/getBaseTransformList.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBaseTransformList/getBaseTransformList.index.js -------------------------------------------------------------------------------- /src/getBaseTransformList/getBaseTransformList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBaseTransformList/getBaseTransformList.spec.js -------------------------------------------------------------------------------- /src/getBoundingPoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBoundingPoints/README.md -------------------------------------------------------------------------------- /src/getBoundingPoints/getBoundingPoints.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBoundingPoints/getBoundingPoints.index.js -------------------------------------------------------------------------------- /src/getBoundingPoints/getBoundingPoints.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBoundingPoints/getBoundingPoints.spec.js -------------------------------------------------------------------------------- /src/getBoxPoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBoxPoints/README.md -------------------------------------------------------------------------------- /src/getBoxPoints/getBoxPoints.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBoxPoints/getBoxPoints.index.js -------------------------------------------------------------------------------- /src/getBoxPoints/getBoxPoints.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getBoxPoints/getBoxPoints.spec.js -------------------------------------------------------------------------------- /src/getCenterPoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getCenterPoint/README.md -------------------------------------------------------------------------------- /src/getCenterPoint/getCenterPoint.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getCenterPoint/getCenterPoint.index.js -------------------------------------------------------------------------------- /src/getCenterPoint/getCenterPoint.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getCenterPoint/getCenterPoint.spec.js -------------------------------------------------------------------------------- /src/getConsolidatedTransformMatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getConsolidatedTransformMatrix/README.md -------------------------------------------------------------------------------- /src/getConsolidatedTransformMatrix/getConsolidatedTransformMatrix.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getConsolidatedTransformMatrix/getConsolidatedTransformMatrix.index.js -------------------------------------------------------------------------------- /src/getConsolidatedTransformMatrix/getConsolidatedTransformMatrix.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getConsolidatedTransformMatrix/getConsolidatedTransformMatrix.spec.js -------------------------------------------------------------------------------- /src/getSetSVG/getSetSVG.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getSetSVG/getSetSVG.index.js -------------------------------------------------------------------------------- /src/getSetSVG/getSetSVG.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/getSetSVG/getSetSVG.spec.js -------------------------------------------------------------------------------- /src/hasAttrNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/hasAttrNS/README.md -------------------------------------------------------------------------------- /src/hasAttrNS/hasAttrNS.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/hasAttrNS/hasAttrNS.index.js -------------------------------------------------------------------------------- /src/hasAttrNS/hasAttrNS.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/hasAttrNS/hasAttrNS.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/index.js -------------------------------------------------------------------------------- /src/initMatrixTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initMatrixTransform/README.md -------------------------------------------------------------------------------- /src/initMatrixTransform/initMatrixTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initMatrixTransform/initMatrixTransform.index.js -------------------------------------------------------------------------------- /src/initMatrixTransform/initMatrixTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initMatrixTransform/initMatrixTransform.spec.js -------------------------------------------------------------------------------- /src/initRotateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initRotateTransform/README.md -------------------------------------------------------------------------------- /src/initRotateTransform/initRotateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initRotateTransform/initRotateTransform.index.js -------------------------------------------------------------------------------- /src/initRotateTransform/initRotateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initRotateTransform/initRotateTransform.spec.js -------------------------------------------------------------------------------- /src/initScaleTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initScaleTransform/README.md -------------------------------------------------------------------------------- /src/initScaleTransform/initScaleTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initScaleTransform/initScaleTransform.index.js -------------------------------------------------------------------------------- /src/initScaleTransform/initScaleTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initScaleTransform/initScaleTransform.spec.js -------------------------------------------------------------------------------- /src/initTranslateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initTranslateTransform/README.md -------------------------------------------------------------------------------- /src/initTranslateTransform/initTranslateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initTranslateTransform/initTranslateTransform.index.js -------------------------------------------------------------------------------- /src/initTranslateTransform/initTranslateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/initTranslateTransform/initTranslateTransform.spec.js -------------------------------------------------------------------------------- /src/isIdentityMatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isIdentityMatrix/README.md -------------------------------------------------------------------------------- /src/isIdentityMatrix/isIdentityMatrix.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isIdentityMatrix/isIdentityMatrix.index.js -------------------------------------------------------------------------------- /src/isIdentityMatrix/isIdentityMatrix.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isIdentityMatrix/isIdentityMatrix.spec.js -------------------------------------------------------------------------------- /src/isMatrixSVGTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isMatrixSVGTransform/README.md -------------------------------------------------------------------------------- /src/isMatrixSVGTransform/isMatrixSVGTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isMatrixSVGTransform/isMatrixSVGTransform.index.js -------------------------------------------------------------------------------- /src/isMatrixSVGTransform/isMatrixSVGTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isMatrixSVGTransform/isMatrixSVGTransform.spec.js -------------------------------------------------------------------------------- /src/isRotateSVGTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isRotateSVGTransform/README.md -------------------------------------------------------------------------------- /src/isRotateSVGTransform/isRotateSVGTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isRotateSVGTransform/isRotateSVGTransform.index.js -------------------------------------------------------------------------------- /src/isRotateSVGTransform/isRotateSVGTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isRotateSVGTransform/isRotateSVGTransform.spec.js -------------------------------------------------------------------------------- /src/isSVGTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isSVGTransform/README.md -------------------------------------------------------------------------------- /src/isSVGTransform/isSVGTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isSVGTransform/isSVGTransform.index.js -------------------------------------------------------------------------------- /src/isSVGTransform/isSVGTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isSVGTransform/isSVGTransform.spec.js -------------------------------------------------------------------------------- /src/isScaleSVGTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isScaleSVGTransform/README.md -------------------------------------------------------------------------------- /src/isScaleSVGTransform/isScaleSVGTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isScaleSVGTransform/isScaleSVGTransform.index.js -------------------------------------------------------------------------------- /src/isScaleSVGTransform/isScaleSVGTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isScaleSVGTransform/isScaleSVGTransform.spec.js -------------------------------------------------------------------------------- /src/isTranslateSVGTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isTranslateSVGTransform/README.md -------------------------------------------------------------------------------- /src/isTranslateSVGTransform/isTranslateSVGTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isTranslateSVGTransform/isTranslateSVGTransform.index.js -------------------------------------------------------------------------------- /src/isTranslateSVGTransform/isTranslateSVGTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isTranslateSVGTransform/isTranslateSVGTransform.spec.js -------------------------------------------------------------------------------- /src/isValidFxScaleSVGTransformList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isValidFxScaleSVGTransformList/README.md -------------------------------------------------------------------------------- /src/isValidFxScaleSVGTransformList/isValidFxScaleSVGTransformList.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isValidFxScaleSVGTransformList/isValidFxScaleSVGTransformList.index.js -------------------------------------------------------------------------------- /src/isValidFxScaleSVGTransformList/isValidFxScaleSVGTransformList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/isValidFxScaleSVGTransformList/isValidFxScaleSVGTransformList.spec.js -------------------------------------------------------------------------------- /src/joinPathData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/joinPathData/README.md -------------------------------------------------------------------------------- /src/joinPathData/joinPathData.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/joinPathData/joinPathData.index.js -------------------------------------------------------------------------------- /src/joinPathData/joinPathData.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/joinPathData/joinPathData.spec.js -------------------------------------------------------------------------------- /src/mergeRotateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeRotateTransform/README.md -------------------------------------------------------------------------------- /src/mergeRotateTransform/mergeRotateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeRotateTransform/mergeRotateTransform.index.js -------------------------------------------------------------------------------- /src/mergeRotateTransform/mergeRotateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeRotateTransform/mergeRotateTransform.spec.js -------------------------------------------------------------------------------- /src/mergeScaleTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeScaleTransform/README.md -------------------------------------------------------------------------------- /src/mergeScaleTransform/mergeScaleTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeScaleTransform/mergeScaleTransform.index.js -------------------------------------------------------------------------------- /src/mergeScaleTransform/mergeScaleTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeScaleTransform/mergeScaleTransform.spec.js -------------------------------------------------------------------------------- /src/mergeScaleTransform2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeScaleTransform2/README.md -------------------------------------------------------------------------------- /src/mergeScaleTransform2/mergeScaleTransform2.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeScaleTransform2/mergeScaleTransform2.index.js -------------------------------------------------------------------------------- /src/mergeScaleTransform2/mergeScaleTransform2.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeScaleTransform2/mergeScaleTransform2.spec.js -------------------------------------------------------------------------------- /src/mergeTranslateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeTranslateTransform/README.md -------------------------------------------------------------------------------- /src/mergeTranslateTransform/mergeTranslateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeTranslateTransform/mergeTranslateTransform.index.js -------------------------------------------------------------------------------- /src/mergeTranslateTransform/mergeTranslateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/mergeTranslateTransform/mergeTranslateTransform.spec.js -------------------------------------------------------------------------------- /src/parsePathData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/parsePathData/README.md -------------------------------------------------------------------------------- /src/parsePathData/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/parsePathData/const.js -------------------------------------------------------------------------------- /src/parsePathData/parsePathData.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/parsePathData/parsePathData.index.js -------------------------------------------------------------------------------- /src/parsePathData/parsePathData.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/parsePathData/parsePathData.spec.js -------------------------------------------------------------------------------- /src/removeAttrNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/removeAttrNS/README.md -------------------------------------------------------------------------------- /src/removeAttrNS/removeAttrNS.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/removeAttrNS/removeAttrNS.index.js -------------------------------------------------------------------------------- /src/removeAttrNS/removeAttrNS.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/removeAttrNS/removeAttrNS.spec.js -------------------------------------------------------------------------------- /src/setAttrNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/setAttrNS/README.md -------------------------------------------------------------------------------- /src/setAttrNS/setAttrNS.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/setAttrNS/setAttrNS.index.js -------------------------------------------------------------------------------- /src/setAttrNS/setAttrNS.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/setAttrNS/setAttrNS.spec.js -------------------------------------------------------------------------------- /src/updateMatrixTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateMatrixTransform/README.md -------------------------------------------------------------------------------- /src/updateMatrixTransform/updateMatrixTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateMatrixTransform/updateMatrixTransform.index.js -------------------------------------------------------------------------------- /src/updateMatrixTransform/updateMatrixTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateMatrixTransform/updateMatrixTransform.spec.js -------------------------------------------------------------------------------- /src/updateRotateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateRotateTransform/README.md -------------------------------------------------------------------------------- /src/updateRotateTransform/updateRotateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateRotateTransform/updateRotateTransform.index.js -------------------------------------------------------------------------------- /src/updateRotateTransform/updateRotateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateRotateTransform/updateRotateTransform.spec.js -------------------------------------------------------------------------------- /src/updateScaleTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateScaleTransform/README.md -------------------------------------------------------------------------------- /src/updateScaleTransform/updateScaleTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateScaleTransform/updateScaleTransform.index.js -------------------------------------------------------------------------------- /src/updateScaleTransform/updateScaleTransform.sepc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateScaleTransform/updateScaleTransform.sepc.js -------------------------------------------------------------------------------- /src/updateTranslateTransform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateTranslateTransform/README.md -------------------------------------------------------------------------------- /src/updateTranslateTransform/updateTranslateTransform.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateTranslateTransform/updateTranslateTransform.index.js -------------------------------------------------------------------------------- /src/updateTranslateTransform/updateTranslateTransform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/src/updateTranslateTransform/updateTranslateTransform.spec.js -------------------------------------------------------------------------------- /test/assertions/expectSameNumberEpsilon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/expectSameNumberEpsilon.js -------------------------------------------------------------------------------- /test/assertions/expectSameValueSVGMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/expectSameValueSVGMatrix.js -------------------------------------------------------------------------------- /test/assertions/expectSameValueSVGTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/expectSameValueSVGTransform.js -------------------------------------------------------------------------------- /test/assertions/expectTransformWithRotateAngleCxCy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/expectTransformWithRotateAngleCxCy.js -------------------------------------------------------------------------------- /test/assertions/expectTransformWithScaleSxSy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/expectTransformWithScaleSxSy.js -------------------------------------------------------------------------------- /test/assertions/expectTransformWithTranslateTxTy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/expectTransformWithTranslateTxTy.js -------------------------------------------------------------------------------- /test/assertions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/assertions/index.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/index.json.html -------------------------------------------------------------------------------- /test/mount_fxsvg_in_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/mount_fxsvg_in_browser.js -------------------------------------------------------------------------------- /test/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/playground.html -------------------------------------------------------------------------------- /test/run_tests_in_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/run_tests_in_browser.js -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/server.js -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/spec.js -------------------------------------------------------------------------------- /test/utils/deepCopyTransformList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/deepCopyTransformList.js -------------------------------------------------------------------------------- /test/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/index.js -------------------------------------------------------------------------------- /test/utils/makeAllCombinations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeAllCombinations.js -------------------------------------------------------------------------------- /test/utils/makeMockRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeMockRect.js -------------------------------------------------------------------------------- /test/utils/makeMockRectInitializedRotateTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeMockRectInitializedRotateTransform.js -------------------------------------------------------------------------------- /test/utils/makeMockRectInitializedScaleTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeMockRectInitializedScaleTransform.js -------------------------------------------------------------------------------- /test/utils/makeMockRectInitializedTranslateTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeMockRectInitializedTranslateTransform.js -------------------------------------------------------------------------------- /test/utils/makeRandomBool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomBool.js -------------------------------------------------------------------------------- /test/utils/makeRandomInt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomInt.js -------------------------------------------------------------------------------- /test/utils/makeRandomNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomNumber.js -------------------------------------------------------------------------------- /test/utils/makeRandomNumberExcept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomNumberExcept.js -------------------------------------------------------------------------------- /test/utils/makeRandomSVGMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomSVGMatrix.js -------------------------------------------------------------------------------- /test/utils/makeRandomSVGTransformMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomSVGTransformMatrix.js -------------------------------------------------------------------------------- /test/utils/makeRandomSVGTransformRotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomSVGTransformRotate.js -------------------------------------------------------------------------------- /test/utils/makeRandomSVGTransformScale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomSVGTransformScale.js -------------------------------------------------------------------------------- /test/utils/makeRandomSVGTransformTranslate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomSVGTransformTranslate.js -------------------------------------------------------------------------------- /test/utils/makeRandomTransformAttributeValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomTransformAttributeValue.js -------------------------------------------------------------------------------- /test/utils/makeRandomTransformString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomTransformString.js -------------------------------------------------------------------------------- /test/utils/makeRandomTransformStringList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marpple/FxSVG/HEAD/test/utils/makeRandomTransformStringList.js --------------------------------------------------------------------------------