updateTbState method
dynamic
updateTbState(
- dynamic newState,
- dynamic updateMatrices
- Update the trackball FSA
- @param {STATE2} newState New state of the FSA
- @param {Boolean} updateMatrices If matriices state should be updated
- @param {STATE2} newState New state of the FSA
Implementation
updateTbState(newState, updateMatrices) {
this._state = newState;
if (updateMatrices) {
this.updateMatrixState();
}
}