POV-Ray : Newsgroups : povray.off-topic : Progress on the fractal front : Re: Progress on the fractal front Server Time
6 Sep 2024 23:19:45 EDT (-0400)
  Re: Progress on the fractal front  
From: Invisible
Date: 29 Sep 2008 04:03:33
Message: <48e08bd5@news.povray.org>
stbenge wrote:

> I would rather just use a program already geared towards 
> user-friendliness, since I'm lazy when it comes to the boring aspects of 
> programming (Windows API stuff). Does anyone know of a good fractal 
> generator that lets you alter the parameters at a low, less-abstract 
> level? I don't mean z=z+c, but rather something like xx=x*x-y*y, 
> yy=x*y*2. It would have to allow me to use mathematical expressions 
> since I make use of min(n,n) for the more interesting fractals I've come 
> up with. I wonder if Fractint would allow me to do that...

Yeah, FractInt will do it. The syntax is something like

   x = real(z);
   y = imag(z);
   z = {x*x - y*y, 2*x*y};

off the top of my head...

The fun part - apparently - is getting FractInt to actually run any 
more. Being an old MS-DOS program that manually frobnicates the video 
hardware in advanced ways, it doesn't tend to run very happily under 
Windoze. (Indeed, you might have more luck with the Linux port...)


Post a reply to this message

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