Bug 56336 - povray poly_wave output string
Summary: povray poly_wave output string
Status: RESOLVED FIXED
Alias: None
Product: kpovmodeler
Classification: Unmaintained
Component: general (show other bugs)
Version: 1.0
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: KPovModeler mailinglist
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-03-24 19:40 UTC by osamyn
Modified: 2003-03-24 19:52 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 !