Jump to content

meshing fractals


schwungsau

Recommended Posts

i am playing more with Vex right now:

 

Vex Code:

float resX = 600;
float resY = 600;
float deltaD = 0.5;
int numVert = 3;
float pi = 3.1415922653;
float rotOffset = pi / 6.0;
vector pos= {0,0,0};

float cx = (resX/2.0)*cos((2*pi/numVert) + rotOffset) + (resX /2);
float cy = (resY/2.0)*sin((2*pi/numVert) + rotOffset) + (resY /2);

int iter = chf("iteration");

for(int i=0; i<(iter+15); i++) {
     int num = int(((rand(i)*32767) % numVert) +1);

     float xVert = (resX/2) * cos((2*pi*num / numVert) + rotOffset) + (resX/2);
     float yVert = (resY/2) * sin((2*pi*num / numVert) + rotOffset) + (resY/2);
        
        cx += deltaD * (xVert - cx);
        cy += deltaD * (yVert - cy);
        if(i>15) {
            pos.x = cx;
            pos.y = cy;
            addpoint( 0, pos );
            }
        }
        

 

 

 

  • Like 1
Link to comment
Share on other sites

  • 9 months later...
3 hours ago, jerjozwik said:

very cool work. i just started playing with julia sets in Cop2 nodes set to volume. have you done any fractal tests as volumetrics?

tks, i did some volume renders with displacement, Lee Giggs style, but the rendertime was extreme slow.

julia, manldebulb is quite data heavy and limits creative freedom. i am using only real geo / splines instead.

Link to comment
Share on other sites

  • 4 weeks later...
  • 8 months later...
  • 11 months later...
On 2019. 4. 25. at 오전 4시 20분, schwungsau said:

클래식 Julia Fractal을 사용하여 스플라인을 구동합니다 :
멋진 스플라인 (만트라) 및 흑백

julia_v002.png

julia_v003.jpg

Hi! Your work is so cool! I'm looking for fractal noise and it's difficult. Could you please share the hip file with me? Thank you.

Link to comment
Share on other sites

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...