|
|
This bug seems related to the exit condition of the loop determining
whether the sequence is bounded or unbounded.
Here is an example that seems to fix the problem.
(Patch to apply against fractal.cpp of the linux sources, version
povray-3.50a).
If someone wants the whole file, please ask.
HTH Massimo
--- src/fractal.cpp.ex Tue Nov 5 17:46:33 2002
+++ src/fractal.cpp Tue Nov 5 17:46:50 2002
@@ -632,7 +632,7 @@
R = 2.0;
}
- Fractal->Exit_Value = Sqr(R);
+ Fractal->Exit_Value = Sqr(R) + Fractal_Tolerance;
break;
Post a reply to this message
|
|