Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 608 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 608 Bytes

$$createSVGTransform

SVGTransform 객체를 생성합니다. SVGTransform.SVG_TRANSFORM_MATRIX 타입을 가집니다. transform.matrix 값으로 SVGMatrix {a: 1, b: 0, c: 0, d: 1, e: 0, f: 0} 을 가집니다.

console.log($$createSVGTransform());
// SVGTransform {type: 1, matrix: SVGMatrix, angle: 0}
const $svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
console.log($$createSVGTransform($svg));
// SVGTransform {type: 1, matrix: SVGMatrix, angle: 0}