From 8e3a7158ecae541692826e7b5998c8ffc810173a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 19 Oct 2011 13:59:24 -0400 Subject: Make API more consistent. Object methods should be dmnsn__(). --- dimension/dimension.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dimension') 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() -- cgit v1.2.3