|
|
Nathan Kopp <Nat### [at] koppcom> wrote:
: incorporated fractal patch - completely untested
fractal_interior_type and fractal_exterior_type do not work (they are
recognized as keywords but they are not parsed). The reason is that
you haven't added the following code at line 1067 of parstxtr.c:
CASE (FRACTAL_EXTERIOR_TYPE_TOKEN)
New->Vals.Fractal.exterior_type = (int)Parse_Float();
Parse_Comma();
New->Vals.Fractal.efactor = Parse_Float();
END_CASE
CASE (FRACTAL_INTERIOR_TYPE_TOKEN)
New->Vals.Fractal.interior_type = (int)Parse_Float();
Parse_Comma();
New->Vals.Fractal.ifactor = Parse_Float();
END_CASE
Adding those lines fixes the problem and all my test images (those I have
posted to p.b.i) work fine.
Thanks for removing the //-comments from the source file. However, there
still are few of them in lighting.c, povray.c and tokenize.c.
--
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/
Post a reply to this message
|
|