summaryrefslogtreecommitdiffstats
path: root/dimension
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-10-19 13:59:24 -0400
committerTavian Barnes <tavianator@gmail.com>2011-10-30 18:11:22 -0400
commit8e3a7158ecae541692826e7b5998c8ffc810173a (patch)
treebeda4f9f8604f77d0513d5fb02b7ddf53d203d09 /dimension
parente9810a7b1aae15320e58371b657a2f963562834d (diff)
downloaddimension-8e3a7158ecae541692826e7b5998c8ffc810173a.tar.xz
Make API more consistent.
Object methods should be dmnsn_<object>_<fn>().
Diffstat (limited to 'dimension')
-rw-r--r--dimension/dimension.in4
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()