(x:number, y:number, z:number)
| 214 | } |
| 215 | |
| 216 | public appendTranslation(x:number, y:number, z:number):void { |
| 217 | this._data = this.dotProduct([ |
| 218 | 1, 0, 0, x, |
| 219 | 0, 1, 0, y, |
| 220 | 0, 0, 1, z, |
| 221 | 0, 0, 0, 1 |
| 222 | ],this._data); |
| 223 | } |
| 224 | |
| 225 | public appendScale(sX:number = 1, sY:number = 1, sZ:number = 1):void{ |
| 226 | this._data = this.dotProduct([ |
no test coverage detected