チェンジセット 2429
- コミット日時:
- 2009/04/08 11:12:55 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Frocessing/changelog.txt
r2403 r2429 1 1 2 2 frocessing change log 3 4 2009-04-08 nutsu(face@nutsu.com) 5 6 * bug fix : frocessing.shape.FShapeSVG 7 transform skewX, skewY, rotate(0,x,y) 8 3 9 4 10 2009-04-01 0.5.4 nutsu(face@nutsu.com) … … 15 21 * chg : Wait to read the file, load method(Shape,Image,Font) called in setup. 16 22 frocessing.display.F5MovieClip 17 18 23 19 24 as3/Frocessing/trunk/src/frocessing/shape/FShapeSVG.as
r2403 r2429 68 68 * 69 69 * @author nutsu 70 * @version 0.5. 370 * @version 0.5.4 71 71 */ 72 72 public class FShapeSVG extends FShapeContainer … … 1578 1578 var txx:Number = Number(v[1]); 1579 1579 var tyy:Number = Number(v[2]); 1580 mat.prepend Matrix( 0, 1, 1, 0,txx, tyy );1580 mat.prependTranslation( txx, tyy ); 1581 1581 mat.prependRotation( _deg_to_radian(v[0]) ); 1582 1582 mat.prependTranslation( -txx, -tyy ); … … 1585 1585 else if ( m == "skewX" ) 1586 1586 { 1587 mat.prependMatrix( 0, 1, Math.tan( _deg_to_radian(v[0]) ), 0, 0, 0 );1587 mat.prependMatrix( 1, 0, Math.tan( _deg_to_radian(v[0]) ), 1, 0, 0 ); 1588 1588 } 1589 1589 else if ( m == "skewY" ) 1590 1590 { 1591 mat.prependMatrix( 0, Math.tan( _deg_to_radian(v[0]) ), 1, 0, 0, 0 );1591 mat.prependMatrix( 1, Math.tan( _deg_to_radian(v[0]) ), 0, 1, 0, 0 ); 1592 1592 } 1593 1593 }

