(tutorial, args)
| 13 | errs = [] |
| 14 | |
| 15 | def render(tutorial, args): |
| 16 | outimage = f"{script_dir}/reference/{tutorial}.exr" |
| 17 | cmd = f"{script_dir}/../../build/embree_{tutorial} -o {outimage} {args}" |
| 18 | if verbose: |
| 19 | print(cmd) |
| 20 | if os.system(cmd) == 0: |
| 21 | print(f"Rendered {outimage}") |
| 22 | else: |
| 23 | errs.append(t) |
| 24 | |
| 25 | tutorials = [ |
| 26 | ("closest_point", ""), |
no test coverage detected