(x:number, y:number, z:number)
| 246 | } |
| 247 | |
| 248 | public prependTranslation(x:number, y:number, z:number):void { |
| 249 | this._data = this.dotProduct(this._data, [ |
| 250 | 1, 0, 0, x, |
| 251 | 0, 1, 0, y, |
| 252 | 0, 0, 1, z, |
| 253 | 0, 0, 0, 1 |
| 254 | ]); |
| 255 | } |
| 256 | |
| 257 | public prependScale(sX:number, sY:number, sZ:number):void{ |
| 258 | this._data = this.dotProduct(this._data, [ |
no test coverage detected