Logo by DsyneGrafix - Contribute your own Logo!

END OF AN ERA, FRACTALFORUMS.COM IS CONTINUED ON FRACTALFORUMS.ORG

it was a great time but no longer maintainable by c.Kleinhuis contact him for any data retrieval,
thanks and see you perhaps in 10 years again

this forum will stay online for reference
News: Did you know ? you can use LaTex inside Postings on fractalforums.com!
 
*
Welcome, Guest. Please login or register. April 18, 2024, 07:10:57 AM


Login with username, password and session length


The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!


Pages: [1]   Go Down
  Print  
Share this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on RedditShare this topic on StumbleUponShare this topic on Twitter
Author Topic: Julia Set  (Read 835 times)
Description: Simple Julia Set Animation
0 Members and 1 Guest are viewing this topic.
trafassel
Fractal Bachius
*
Posts: 531


trafassel
« on: July 25, 2017, 07:44:05 PM »

<a href="http://www.youtube.com/v/utq0YRPDOc4&rel=1&fs=1&hd=1" target="_blank">http://www.youtube.com/v/utq0YRPDOc4&rel=1&fs=1&hd=1</a>
Logged
mclarekin
Fractal Senior
******
Posts: 1739



« Reply #1 on: July 26, 2017, 03:20:13 PM »

the video is great. Thanks for posting.
Logged
Adam Majewski
Fractal Lover
**
Posts: 221


WWW
« Reply #2 on: July 26, 2017, 06:40:19 PM »

cool !
can you describe :
- algorithm
- software
- how have you choosed c parameters
?
TIA
Logged
trafassel
Fractal Bachius
*
Posts: 531


trafassel
« Reply #3 on: July 27, 2017, 07:26:17 PM »

The algorithm comes from the idea to display the circles which forms the Mandelbrot Set as spheres.

The formula is given by:

Code:
public double minBailout=0.03;
public double rPow=0.39;
public double sphereSize=0.61;
public override bool GetBool(double x,double y,double z)
{
  for (int i=1;i<_cycles;  i++)
  {
    double xx=x*x;
    double yy=y*y;
    double zz=z*z;
    double r=xx+yy+zz;
    if (r>6)return false;
    if (r<minBailout)return true;
    y=2*x*y+_jy;
    x=xx-yy+_jx;
    z=z*Math.Pow(r,rPow)/sphereSize+_jz;
  }
  return true;
}

public override void Init()
{
  base.Init();
  if(GetString("intern.Formula.TempUpdateVal")!="7053ca49f017bbb3d32747e60fa68e28")
  {
    SetParameterBulk("Formula.Parameters: minBailout=0.03 rPow=0.39 sphereSize=0.61 Formula.Static: Cycles=410 Julia=1 jx=0.288724629629629 jy=-0.473233333333333 jz=0 Scene: CenterX=0.170154474870217 CenterY=0.20568854630507 CenterZ=-0.30614740041454 Radius=1.7535060530771 Transformation.Camera: AngleX=-155.336787655115 AngleY=-56.3765596085849 AngleZ=-99.3304786206038 IsometricProjection=0 Position=1 intern.Formula: TempUpdateVal=7053ca49f017bbb3d32747e60fa68e28");
  }

The init() method can be ignored. Here the Julia c seeds and the camera parameters are set.

Is used the program Gestaltlupe (http://www.gestaltlupe.com/) to generate the video frames and ImagesToVideo (http://en.cze.cz/Images-To-Video) to combine this images to a video.

The Julia C values are set by hand for some frames and the animation just interpolates the values for all frames.


Logged
mclarekin
Fractal Senior
******
Posts: 1739



« Reply #4 on: July 28, 2017, 09:37:32 AM »

@ trafassel. That is a very fast algorithm, and looks great.

It is perfect for having the parameters animated by music.

I will add it to my long list of Trafassel formulas that I have yet to investigate, probably at the top of the list. smiley

I still need to  find away to do this type of formula using DE.

thanks for posting.
Logged
M Benesi
Fractal Schemer
****
Posts: 1075



WWW
« Reply #5 on: July 30, 2017, 04:05:42 PM »

  Love it.  Great idea. 
Logged

trumanbrown
Safarist
******
Posts: 88


WWW
« Reply #6 on: July 31, 2017, 07:03:24 PM »

Wonderful animation! I love the bubbly effect!
Logged
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Just another julia Images Showcase (Rate My Fractal) Unhooked 3 2540 Last post May 19, 2010, 03:11:42 PM
by Bent-Winged Angel
Another Julia Images Showcase (Rate My Fractal) Duncan C 5 3102 Last post November 05, 2007, 08:39:19 PM
by Kimmo
Julia 2D Art Dinkydau 0 1557 Last post March 06, 2009, 05:02:38 PM
by Dinkydau
Did Julia know how a Julia set looked like? Mandelbrot & Julia Set bib 7 5592 Last post February 11, 2013, 11:38:20 AM
by bib
Deep julia morphing like as the julia set at 0+1i Ultra Deep Mandelbrot Fractal universe 0 3923 Last post May 21, 2016, 10:53:30 PM
by Fractal universe

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.123 seconds with 24 queries. (Pretty URLs adds 0.005s, 2q)