Build and parse test cli.
subroutine cli_parse()
!< Build and parse test cli.
type(command_line_interface) :: cli !< Test command line interface.
real(R8P) :: normal_(3) !< Normal of mirroring plane.
integer(I4P) :: error !< Error trapping flag.
call cli%init(progname='fossil_test_mirror', &
authors='S. Zaghi', &
help='Usage: ', &
examples=["fossil_test_mirror --stl src/tests/dragon.stl"], &
epilog=new_line('a')//"all done")
call cli%add(switch='--stl', &
help='STL (input) file name', &
required=.false., &
def='src/tests/cube.stl', &
act='store')
call cli%add(switch='--normal', &
help='normal of mirroring plane', &
required=.false., &
nargs='+', &
def='1.0 0.0 0.0', &
act='store')
call cli%parse(error=error) ; if (error/=0) stop
call cli%get(switch='--stl', val=file_name_stl, error=error) ; if (error/=0) stop
call cli%get(switch='--normal', val=normal_, error=error) ; if (error/=0) stop
normal%x = normal_(1)
normal%y = normal_(2)
normal%z = normal_(3)
endsubroutine cli_parse