(q:number)
| 105 | } |
| 106 | |
| 107 | public rotate(q:number):void { |
| 108 | this._data = this.dotProduct([ |
| 109 | Math.cos(q), -Math.sin(q), 0, |
| 110 | Math.sin(q), Math.cos(q), 0, |
| 111 | 0, 0, 1 |
| 112 | ]); |
| 113 | } |
| 114 | |
| 115 | public scale(sx:number, sy:number):void { |
| 116 | this._data = this.dotProduct([ |