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
Implementation
updateTbState(newState, updateMatrices) {
_state = newState;
if (updateMatrices) {
updateMatrixState();
}
}