isForView method
Returns true if the muscle is visible in the specified view.
Implementation
bool isForView(BodyView view) =>
view == BodyView.both ||
_view == view ||
(_view == BodyView.both &&
(view == BodyView.front || view == BodyView.back));