POV-Ray : Newsgroups : povray.animations : 3d fractal animation with error ? : Re: 3d fractal animation with error ? Server Time
28 Sep 2024 01:35:17 EDT (-0400)
  Re: 3d fractal animation with error ?  
From: WaveMaster
Date: 5 May 2007 10:45:01
Message: <web.463c978fb9adab2dcbdad360@news.povray.org>
The final prove that there are errors in the fractal calculation:
-----------------------------------------------------------------

First the Source Code:

global_settings {number_of_waves 10}
global_settings {assumed_gamma 1.0}
global_settings {max_trace_level 10}
global_settings {adc_bailout 0.006}

global_settings {
  photons {
    count 40000
    media 100
    gather 30, 120
    autostop 0
    jitter .4
  }
}
camera{
  location <0, 0,-455+150.0*clock>
  sky y
  up <0, 1, 0>
  right <-1.77 0.0 0.0>
  look_at <0.0, 0, 0>
}

light_source{
  <0, 0,-380>
  color rgb 1.6
}

julia_fractal {
  <-0.4, 0.4, -0.4, 0.4>
  quaternion
  sqr
  slice <0,0,0.0,1.0>, 0.0
  precision 14
  max_iteration 24
  texture {
    pigment{
      checker
        pigment{
          rgb <1,1.0,1.0>
        },
        pigment{
          rgb <1,1.0,0.3>
        }
      scale <0.05,0.05,0.05>
    }
    finish {
      ambient 0.09
      metallic 0.4
    }
  }
  hollow on
  rotate <-2,19,0>
  rotate <0,0,-10>
  scale <260, 210, 1000>
  rotate <0, 96, 0>
  translate <0.0, -8, 0>
}

The fractal has no rotation. Only a simple translation from outside into the
fractal. As soon as you come near the shape of the fractal, you have a
calculation change of the fractal. In the animation, you can see two
different ellipses which grow. Inside the ellipses you can see, that some
parts of the fractal are on another position as they were at the begining
(Outside the shape). The amount of ellipses varies on the angel you hit the
shape. When the fractal slowly rotates around the y-axis you can see up to 6
different ellipses they start from a point and grows over the whole
fractal-image.

Animation Link:

http://homepage.sunrise.ch/mysunrise/go_huerlimann/PovRay/FractalTest_08_MegaP_001_200.m2v

Can anyone explain this kind of animation effect?
Is that also a Wheel effect??


Post a reply to this message

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