diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-10-19 13:59:24 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-10-30 18:11:22 -0400 |
commit | 8e3a7158ecae541692826e7b5998c8ffc810173a (patch) | |
tree | beda4f9f8604f77d0513d5fb02b7ddf53d203d09 /dimension/dimension.in | |
parent | e9810a7b1aae15320e58371b657a2f963562834d (diff) | |
download | dimension-8e3a7158ecae541692826e7b5998c8ffc810173a.tar.xz |
Make API more consistent.
Object methods should be dmnsn_<object>_<fn>().
Diffstat (limited to 'dimension/dimension.in')
-rw-r--r-- | dimension/dimension.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dimension/dimension.in b/dimension/dimension.in index 0ea41e4..cd2e82d 100644 --- a/dimension/dimension.in +++ b/dimension/dimension.in @@ -209,12 +209,12 @@ if args.adc_bailout is not None: args.adc_bailout = float(match.group(1))/float(match.group(2)) scene.adc_bailout = float(args.adc_bailout) -# Raytrace the scene +# Ray-trace the scene if scene.nthreads == 1: render_message = "Rendering scene" else: render_message = "Rendering scene (using %d threads)" % scene.nthreads -progress_bar(render_message, scene.raytrace_async()) +progress_bar(render_message, scene.ray_trace_async()) # Write the output file export_timer = Timer() |