(rhs:Matrix3D)
| 232 | } |
| 233 | |
| 234 | public prepend(rhs:Matrix3D):void { |
| 235 | this._data = this.dotProduct(this._data, rhs._data); |
| 236 | } |
| 237 | |
| 238 | public prependRotation(degrees:number, axis:Vector3D, pivotPoint:Vector3D = null):void { |
| 239 | if (pivotPoint !== null) { |
nothing calls this directly
no test coverage detected