Returns a list of all muscles visible from the back.
static List<Muscle> back() => Muscle.values.where((m) => m.isForView(BodyView.back)).toList();