Bug 56336

Summary: povray poly_wave output string
Product: [Unmaintained] kpovmodeler Reporter: osamyn
Component: generalAssignee: KPovModeler mailinglist <kpovmodeler-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.0   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description osamyn 2003-03-24 19:40:01 UTC
Version:           1.0 (using KDE KDE 3.0.5)
Installed from:    Compiled From Sources
Compiler:          gcc 3.2 
OS:          Linux

There's a small bug in the povray output for the poly_wave modifier...

In pmblendmapmodifiers.cpp (line 99) replace the following line:
            dev.writeLine( "poly_wave" + str );
with :
            dev.writeLine( "poly_wave " + str );
(difference is just a space character in the constant string)

And it will output a correctpovray file !
Comment 1 Andreas Zehender 2003-03-24 19:52:48 UTC
Subject: Re:  New: povray poly_wave output string

Hi!

Fixed, thanks for the report.

> There's a small bug in the povray output for the poly_wave modifier...
>
> In pmblendmapmodifiers.cpp (line 99) replace the following line:
>             dev.writeLine( "poly_wave" + str );
> with :
>             dev.writeLine( "poly_wave " + str );
> (difference is just a space character in the constant string)
>
> And it will output a correctpovray file !