svnno****@sourc*****
svnno****@sourc*****
2009年 12月 20日 (日) 22:15:17 JST
Revision: 1484
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1484
Author: dhrname
Date: 2009-12-20 22:15:17 +0900 (Sun, 20 Dec 2009)
Log Message:
-----------
Modified Paths:
--------------
branches/05x/056/sie.js
Modified: branches/05x/056/sie.js
===================================================================
--- branches/05x/056/sie.js 2009-12-20 13:07:21 UTC (rev 1483)
+++ branches/05x/056/sie.js 2009-12-20 13:15:17 UTC (rev 1484)
@@ -368,7 +368,8 @@
function STGroupElement( /*element*/ g, /*Matrix*/ matrix, /*float*/w, h) {
try{
this.tar = g;
- this.transformable = NAIBU.transformToCTM(g,matrix); //g要素のtransform属性を前もって処理
+ var _nt = NAIBU.transformToCTM;
+ this.transformable = _nt(g,matrix); //g要素のtransform属性を前もって処理
//以下、ツリーとして処理
this.children = [];
this.chset(g,this.transformable, w, h);
@@ -378,7 +379,8 @@
}
STGroupElement.prototype.set = function (sw,sh) {
try{
- stvsetob(this.children,sw,sh);
+ var _stvsetob = stvsetob;
+ _stvsetob(this.children,sw,sh);
this.children = this.transformable = null;
} catch(e){stlog.addd(e,3145);}
};