* Returns the working matrix as a serializable object * @returns {*} Serializable Matrix
()
| 148 | * @returns {*} Serializable Matrix |
| 149 | */ |
| 150 | public getMatrix():ISerializable { |
| 151 | if (this._matrix) { |
| 152 | return this._matrix; |
| 153 | } else { |
| 154 | return this._matrix3d; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Returns matrix type in use |