resetMatrix method
Resets the current transformation matrix to the identity matrix.
All subsequent drawing operations will be performed without any prior transformations until new transformations are applied.
Implementation
void resetMatrix() {
_currentMatrix = Matrix3.identity();
}