updateTbState method

void updateTbState(
  1. dynamic newState,
  2. bool updateMatrices
)
  • Update the trackball FSA
  • newState New state of the FSA
  • updateMatrices If matriices state should be updated

Implementation

void updateTbState(newState, bool updateMatrices) {
    _state = newState;
    if (updateMatrices) {
      updateMatrixState();
    }
  }