male static method

SvgPathReader male(
  1. BodyView view
)

Returns an SvgPathReader for the male body based on the specified view.

Implementation

static SvgPathReader male(BodyView view) {
  return switch (view) {
    BodyView.front => maleFront(),
    BodyView.back => maleBack(),
    _ => throw UnimplementedError('Male View $view not implemented!'),
  };
}