transform.toString()
Returns a string representing the SVG transform corresponding to this transform. Implemented as:
1 2 3 | function toString() { return "translate(" + this .x + "," + this .y + ") scale(" + this .k + ")" ; } |
transform.toString()
Returns a string representing the SVG transform corresponding to this transform. Implemented as:
1 2 3 | function toString() { return "translate(" + this .x + "," + this .y + ") scale(" + this .k + ")" ; } |
Designed by : w10schools
service@w10schools.com
Please login to continue.