From 52c5b2da7d97ec744f3e6126a6b1e25ae7d6953c Mon Sep 17 00:00:00 2001 From: Mike Sierra Date: Wed, 9 Oct 2013 16:56:49 -0400 Subject: [PATCH] VERIFY new values for matrix translate x/y --- src/svg.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/svg.js b/src/svg.js index 1a47468..0c17c2e 100644 --- a/src/svg.js +++ b/src/svg.js @@ -441,8 +441,8 @@ function Matrix(a, b, c, d, e, f) { [ method ] ** * Translate the matrix - - x (number) - - y (number) + - x (number) horizontal offset distance VERIFY + - y (number) vertical offset distance VERIFY \*/ matrixproto.translate = function (x, y) { return this.add(1, 0, 0, 1, x, y); @@ -838,7 +838,7 @@ packageRGB = function (r, g, b, o) { [ method ] ** * Parses the color string and returns an object featuring the color's component values. - - clr (string) color string in one of the supported formats (see @Snap.getRGB) + - clr (string) color string in one of the supported formats. See @Snap.getRGB. = (object) Combined RGB & HSB object in the following format: o { o r (number) red,