summaryrefslogtreecommitdiffstats
path: root/src/default.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2014-06-28 18:39:11 +0200
committerwout <wout@impinc.co.uk>2014-06-28 18:39:11 +0200
commit2260f5789b48dd92dccf0dd734cf59cf957e4d52 (patch)
tree2c94e66afe60e45f34db6ced5f24069ab4466c72 /src/default.js
parent0d11ad263f193e8a585e7676deb8a60a8c103ef6 (diff)
downloadsvg.js-2260f5789b48dd92dccf0dd734cf59cf957e4d52.tar.gz
svg.js-2260f5789b48dd92dccf0dd734cf59cf957e4d52.zip
Added new SVG.Line class and working on SVG.Matrix
Diffstat (limited to 'src/default.js')
-rwxr-xr-xsrc/default.js51
1 files changed, 23 insertions, 28 deletions
diff --git a/src/default.js b/src/default.js
index b9819a7..0c9ba33 100755
--- a/src/default.js
+++ b/src/default.js
@@ -1,10 +1,7 @@
SVG.defaults = {
- // Default matrix
- matrix: '1 0 0 1 0 0'
-
// Default attribute values
-, attrs: {
+ attrs: {
/* fill and stroke */
'fill-opacity': 1
, 'stroke-opacity': 1
@@ -35,30 +32,28 @@ SVG.defaults = {
, 'font-family': 'Helvetica, Arial, sans-serif'
, 'text-anchor': 'start'
}
-
- // Default transformation values
-, trans: function() {
- return {
- /* translate */
- x: 0
- , y: 0
- /* scale */
- , scaleX: 1
- , scaleY: 1
- /* rotate */
- , rotation: 0
- /* skew */
- , skewX: 0
- , skewY: 0
- /* matrix */
- , matrix: this.matrix
- , a: 1
- , b: 0
- , c: 0
- , d: 1
- , e: 0
- , f: 0
- }
+
+ // Transforms
+, trans: {
+ /* translate */
+ x: 0
+ , y: 0
+ /* scale */
+ , scaleX: 1
+ , scaleY: 1
+ /* rotate */
+ , rotation: 0
+ /* skew */
+ , skewX: 0
+ , skewY: 0
+ /* matrix */
+ , matrix: this.matrix
+ , a: 1
+ , b: 0
+ , c: 0
+ , d: 1
+ , e: 0
+ , f: 0
}
} \ No newline at end of file