svnno****@sourc*****
svnno****@sourc*****
2011年 5月 23日 (月) 23:16:32 JST
Revision: 2699 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2699 Author: dhrname Date: 2011-05-23 23:16:32 +0900 (Mon, 23 May 2011) Log Message: ----------- SVGPathSegCurvetoCubicAbsなどのプロパティに対して軽量化 Modified Paths: -------------- branches/07x/078/org/w3c/dom/svg.js Modified: branches/07x/078/org/w3c/dom/svg.js =================================================================== --- branches/07x/078/org/w3c/dom/svg.js 2011-05-23 14:13:31 UTC (rev 2698) +++ branches/07x/078/org/w3c/dom/svg.js 2011-05-23 14:16:32 UTC (rev 2699) @@ -2295,8 +2295,8 @@ pathSegTypeAsLetter : "z" }; function SVGPathSegMovetoAbs() { - /*float*/ this.x; - /*float*/ this.y; + /*float* this.x; + /*float* this.y;*/ return this; }; SVGPathSegMovetoAbs.prototype = { @@ -2313,8 +2313,8 @@ pathSegTypeAsLetter : "m" }; function SVGPathSegLinetoAbs() { - /*float*/ this.x; - /*float*/ this.y; + /*float* this.x; + /*float* this.y;*/ return this; }; SVGPathSegLinetoAbs.prototype = { @@ -2331,12 +2331,12 @@ pathSegTypeAsLetter : "l" }; function SVGPathSegCurvetoCubicAbs() { - /*float*/ this.x; - /*float*/ this.y; - /*float*/ this.x1; - /*float*/ this.y1; - /*float*/ this.x2; - /*float*/ this.y2; + /*float* this.x; + /*float* this.y; + /*float* this.x1; + /*float* this.y1; + /*float* this.x2; + /*float* this.y2;*/ return this; }; SVGPathSegCurvetoCubicAbs.prototype = { @@ -2344,12 +2344,12 @@ pathSegTypeAsLetter : "C" }; function SVGPathSegCurvetoCubicRel() { - /*float*/ this.x; - /*float*/ this.y; - /*float*/ this.x1; - /*float*/ this.y1; - /*float*/ this.x2; - /*float*/ this.y2; + /*float* this.x; + /*float* this.y; + /*float* this.x1; + /*float* this.y1; + /*float* this.x2; + /*float* this.y2;*/ return this; }; SVGPathSegCurvetoCubicRel.prototype = {