POV-Ray : Newsgroups : povray.binaries.images : Isosurface from magnitude of complex function with domain coloring : Re: Isosurface from magnitude of complex function with domain coloring Server Time
19 Apr 2024 12:28:32 EDT (-0400)
  Re: Isosurface from magnitude of complex function with domain coloring  
From: Tor Olav Kristensen
Date: 25 Dec 2021 21:15:00
Message: <web.61c7cfac6041c670bbb338f289db30a9@news.povray.org>
"Tor Olav Kristensen" <tor### [at] TOBEREMOVEDgmailcom> wrote:
>...
> #declare PartTypes[4] = "Z";
> #declare Arguments[4] = ZFn();
>
> #declare PartTypes[5] = "Const";
> #declare Arguments[5] = ImagConstFn(+1.0);
>
> #declare PartTypes[6] = "Sqr";
> #declare Arguments[6] = Arg1Fn(4);
>
> #declare PartTypes[7] = "Mul";
> #declare Arguments[7] = Arg2Fn(5, 6);
>

Oops.
I should have written those assignments like this:

#declare PartTypes[4] = "Const";
#declare Arguments[4] = ImagConstFn(+1.0);

#declare PartTypes[5] = "Z";
#declare Arguments[5] = ZFn();

#declare PartTypes[6] = "Sqr";
#declare Arguments[6] = Arg1Fn(5);

#declare PartTypes[7] = "Mul";
#declare Arguments[7] = Arg2Fn(4, 6);

- But the resulting functions would yield the same values.

--
Tor Olav
http://subcube.com
https://github.com/t-o-k


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.