[Sie-announce] SIEコード [2184] SVGMatrixの最適化を計った

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 11月 28日 (日) 23:35:34 JST


Revision: 2184
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2184
Author:   dhrname
Date:     2010-11-28 23:35:34 +0900 (Sun, 28 Nov 2010)

Log Message:
-----------
SVGMatrixの最適化を計った

Modified Paths:
--------------
    branches/06x/065/org/w3c/dom/svg.js

Modified: branches/06x/065/org/w3c/dom/svg.js
===================================================================
--- branches/06x/065/org/w3c/dom/svg.js	2010-11-25 11:44:41 UTC (rev 2183)
+++ branches/06x/065/org/w3c/dom/svg.js	2010-11-28 14:35:34 UTC (rev 2184)
@@ -1724,15 +1724,15 @@
  *[0 0 1]
  */
 function SVGMatrix() { 
-  /*float*/ this.a = 1;
-   /*float*/ this.b = 0;
-  /*float*/ this.c = 0;
-  /*float*/ this.d = 1;
-  /*float*/ this.e = 0;
-  /*float*/ this.f = 0;
   return this;
 };
 SVGMatrix.prototype = {
+  /*float*/ a : 1,
+  /*float*/ b : 0,
+  /*float*/ c : 0,
+  /*float*/ d : 1,
+  /*float*/ e : 0,
+  /*float*/ f : 0,
   /*multiplyメソッド
    *行列の積を求めて返す
    */




Sie-announce メーリングリストの案内
Back to archive index