Create Procedural Fractals Fast (Blender Tutorial)

Поделиться
HTML-код
  • Опубликовано: 20 ноя 2019
  • Click on my link below and get two FREE months of Skillshare Premium:
    skl.sh/cgmatter
    SUPPORT THESE TUTORIALS / cg_matter
    MY WEBSITE www.cgmatter.com
    In this fast blender tutorial I show you how to make procedural fractals using open shading language and a few material nodes.
    This video was sponsored by Skillshare.
  • КиноКино

Комментарии • 647

  • @CGMatter
    @CGMatter  4 года назад +186

    Hope you liked the tutorial (this one took an unusually long time to edit)! If you are at all interested in trying out Skillshare Premium (and want to redeem 2 FREE months) check out my link: skl.sh/cgmatter
    Have a great week :)

    • @Yurup
      @Yurup 4 года назад +6

      Imho you are starting to cross the point of being entertaining with the memes to being annoying. I like your content but please dial it down a bit.

    • @samalanda
      @samalanda 4 года назад +9

      @@Yurup yeah I think he's going too slow isn't he

    • @Lattamonsteri
      @Lattamonsteri 4 года назад +1

      Can we get a beginner-friendly tutorial to editing? I'm guessing it can be done with a script too ;D geddit? Cuz movies have scripts too, like this fractal shader. Hehe

    • @user-pz3fc8yc9m
      @user-pz3fc8yc9m 4 года назад +1

      DEMOLISH the default cube
      Please? 🌚

    • @maythesciencebewithyou
      @maythesciencebewithyou 4 года назад +3

      This was too slow. Even 2x speed takes me more than one and a half minute to get through.

  • @piotrw1745
    @piotrw1745 4 года назад +884

    This three second break was so long that I was bored and wrote this comment

  • @o1ecypher
    @o1ecypher 4 года назад +673

    im just waiting for the ultimate video where he makes 1 weird sound that explains everything all at once

    • @skylerhanson101
      @skylerhanson101 4 года назад +54

      bruh he should do it and call it an intermediate tutorial instead of a beginner tutorial

    • @emberdrops3892
      @emberdrops3892 4 года назад +5

      That would go viral XD like 5pics per second for 2 seconds and one weird sound. He gotta. XDD

    • @thescrunge7127
      @thescrunge7127 4 года назад +2

      if anyone can do it its him

    • @NoTengoIdeaGuey
      @NoTengoIdeaGuey 4 года назад +1

      Wait that's not what this is?

    • @ch1apet761
      @ch1apet761 4 года назад +2

      Bahhhhhhhhhhhhhhhhhhhhhhh and done

  • @jasper4012
    @jasper4012 4 года назад +597

    The lack of identations in that code is giving me anxiety

    • @CGMatter
      @CGMatter  4 года назад +70

      sorry :)

    • @rhyvin2413
      @rhyvin2413 4 года назад +21

      But are you though?

    • @leastexpected3115
      @leastexpected3115 4 года назад +14

      As pythonist I can relate

    • @ralfbaechle
      @ralfbaechle 4 года назад +21

      @@CGMatter At least the Linux kernel code at 1:37 is properly indented, I can vouch for that :)

    • @jco_sfm
      @jco_sfm 4 года назад +4

      He could have done it all on one line...

  • @asmodeusz28
    @asmodeusz28 4 года назад +378

    RUclips compresses video, but CGMatter compresses the content itself.

    • @ironfoot1938
      @ironfoot1938 4 года назад +5

      the longer he makes these videos the faster he gets

    • @ironfoot1938
      @ironfoot1938 4 года назад +8

      go back and watch the coin video it feels soooo slow

  • @BonBunFilms
    @BonBunFilms 4 года назад +36

    watching this in a sensory deprivation tank phases you out of reality

  • @midlowreborn
    @midlowreborn 4 года назад +201

    video is over 2 mins sorry cant watch too long
    memes ahead epic vid

    • @coby9179
      @coby9179 4 года назад +1

      just speed up the video and the problem is solved :)

  • @beskamir5977
    @beskamir5977 4 года назад +57

    I love how beginner friendly these tutorials are!

  • @_abdul
    @_abdul 4 года назад +38

    Me: wow fract...
    CGMatter : you've been you ba bye..
    Me: wait what?

  • @badhaloninja
    @badhaloninja 4 года назад +38

    I knew I wouldn't forget what last week was supposed to be

  • @midi-sama
    @midi-sama 4 года назад +61

    "Implode the default cube"

  • @dingalong14
    @dingalong14 4 года назад +86

    Neat, had no idea you could just straight-up write shaders inside of Blender. Gotta give it a try sometime.

    • @CGMatter
      @CGMatter  4 года назад +11

      definitely pretty fast to pick up the basics if you know a bit of coding

    • @sebastiangudino9377
      @sebastiangudino9377 Год назад +1

      It is Cycles only tho. And unless your PC supports CUDA, it is CPU only as well. But even with that limitations it is a fantastic underutilized feature that makes complex shaders a lot easier due to being able to write stuff like loops

  • @george.exe_stopped_working
    @george.exe_stopped_working 4 года назад +49

    Next you can use "show your love to the default cube and it'll disintegrate into nothingness like your imaginary girlfriend" a little long but ok

  • @midi-sama
    @midi-sama 4 года назад +40

    HOW DID YOU KNOW MY BLENDER SKILLS POSITION?

  • @WaterLettuceProductions
    @WaterLettuceProductions 3 года назад +12

    I don't know if you could copy this directly into blender, but if anyone needs the code all written out and functional, here it is.
    Edit: Pasting the code below directly into blender using copy paste does in fact work.
    shader fractal(
    float creal = 0,
    float cimag = 0,
    point position = P,
    output color fractalcolor = 0
    ){
    float real = position[0];
    float imag = position[1];
    for(float i = 0; i < 200; i++){
    float realtemp = real;
    real = real*real - imag*imag + creal;
    imag = 2*realtemp*imag + cimag;
    if(sqrt(real*real + imag*imag) > 6 ){
    fractalcolor = i/100;
    }
    }
    }

    • @axlsmit7960
      @axlsmit7960 2 года назад +1

      you are a lifesaver, my guy. Been stuck on it for 10 min now. Just wouldn't work for me

    • @THEHOUSEOFSATIO
      @THEHOUSEOFSATIO 2 года назад

      Omg, wtf? it just didn't work for me like the guy before me. And now there's a friking fractal. Whyy

    • @WaterLettuceProductions
      @WaterLettuceProductions 2 года назад +3

      @@THEHOUSEOFSATIO I feel you man, 90% of the time I follow a tutorial it doesn't make anything remotely close to their product. I got lucky with this one and what you see in my first comment is my result after about 5 hours of confusion and trial and error. Most of the time I just have to watch tutorials and try to use the same skills to make something else. that way I don't feel like I messed up as much.

    • @shieldproject2695
      @shieldproject2695 8 месяцев назад

      god bless you

  • @edeffects
    @edeffects 4 года назад +156

    You could go through all the numbers in pi in under 5 minutes

    • @V.Z.69
      @V.Z.69 4 года назад

      All the numbers in PI? So, infinity in under 5 minutes? Not even if infinity was real that makes no kind of sense.

    • @noobtube7344
      @noobtube7344 4 года назад +19

      cgmatter would never make a video that long

    • @letterborneVods
      @letterborneVods 4 года назад +5

      V. Z. It was a joke

    • @razum1448
      @razum1448 4 года назад +5

      If the speed he talks goes against infinity for the limit of 5 minutes, he can do it. Its mathematically possible.

    • @letterborneVods
      @letterborneVods 4 года назад

      Raz um can infinity have a speed?

  • @thelurkingpanda3605
    @thelurkingpanda3605 4 года назад +100

    wack that I actually understood the math and coding at full speed. what have I become

  • @kaksspl
    @kaksspl 4 года назад +13

    You know this meme when you stop posting attention for one second in math class and empty blackboard is suddenly all written over?
    That's how I felt when I blinked

    • @JiMMy-xd8nu
      @JiMMy-xd8nu 3 года назад

      You stop paying attention before class even starts. *CGmatter is 4 parallel universes ahead of you*

  • @_Envoy
    @_Envoy 4 года назад +35

    another one of those: "i want to try this but i actually wont because i am too lazy" videos

  • @Phiwipuss
    @Phiwipuss 4 года назад +12

    The code:
    shader fractal(
    float creal = 0,
    float cimag = 0
    point position = P,
    output color fractal_color = 0
    )
    {
    float real = position[0];
    float imag = position[1];
    for (float i = 0; i < 200; i++)
    {
    float temp_real = real;
    real = real*real-imag*imag+creal;
    imag = 2*temp_real*imag+cimag;
    if (real*real + imag*imag > 16)
    {
    fractal_color = i/200;
    }
    }
    }

  • @rohninmenezes6872
    @rohninmenezes6872 4 года назад +20

    // Minor change to the code generates the Mandelbrot set.
    shader Mandelbrot
    (
    point position = P,
    output color fractal_color = 0
    )
    {
    float real = 0;
    float imag = 0;
    float creal = position[0];
    float cimag = position[1];
    for(float i = 0;i4)
    {
    fractal_color = i/200;
    }
    }
    }

    • @benfranklin5464
      @benfranklin5464 11 месяцев назад

      Hippity hoppity, YOUR code is now MY property.

    • @astraeus_BACKROOMS
      @astraeus_BACKROOMS Месяц назад

      what's the minor change? the code looks the same

    • @rohninmenezes6872
      @rohninmenezes6872 Месяц назад

      @astraeus_BACKROOMS For the Julia set in the original code, initial N is the position, and initial C is a preset value. For the mandelbrot set, 0,0 is the initial N, and the position is the initial C.

  • @Heavenira
    @Heavenira 4 года назад +3

    Math + Blender + CGMatter = Literally all my interests. Absolute magic.

  • @MarkoMood
    @MarkoMood 4 года назад +3

    First video on youtube that I don't have to watch at 1.5x speed. Greatly appreciate the effort!

  • @marcussmithereens-smithert5409
    @marcussmithereens-smithert5409 4 года назад +11

    The fastest blenderer in the west!

  • @megamaz108
    @megamaz108 3 года назад +5

    if you use object coordinates, separate XYZ and plug the the X into creal and Y into cimag you get the mandlebrot set :)

  • @willkramer
    @willkramer 4 года назад +10

    I know fast tutorials are currently the main subjects of this channel, but I would love to see some full-length, beginner- to intermediate-level tutorials for how to do stuff like this. I feel like a tutorial on fractals, motion tracking, etc. would be really cool, especially if everything was thoroughly explained to the point that the viewer could make their own related project.
    (This is just one idea, of course. Just know that we are open to other content formats if you ever feel creative burnout setting in)

    • @CGMatter
      @CGMatter  4 года назад +2

      I'm thinking of messing with the format as well

    • @Guggel1966
      @Guggel1966 4 года назад

      @@CGMatter You should. This is ADHD at the power of ADHD.

  • @roletnabih
    @roletnabih 4 года назад +39

    I watched this video in reverse.

  • @ThePieGuy731
    @ThePieGuy731 4 года назад +5

    CGMatter Video: is over 3 minutes long
    Me: with fear in my eyes "this is about to be the most advanced thing I've ever seen"

  • @Xynorph
    @Xynorph 4 года назад +1

    I have to say thank you for these videos, not only have they reinvigorated my passion for blender, but the speed and means in which you present them is actually paradoxically easier for me to comprehend, as it is easier skip backward for something you missed rather than forward to cut out the gaps and keep attention on the video. all while the voice still sounds human

    • @CGMatter
      @CGMatter  4 года назад

      thank you so much! not everyone is down with the format so I'm glad you like it :)

  • @chrisrouck
    @chrisrouck 4 года назад +17

    The speed of the CG Matter tutorial is inversely proportional to the time it took to edit...
    y=k/x 🥺😔

    • @CGMatter
      @CGMatter  4 года назад +7

      it's actually a nonlinear system

  • @lily__r
    @lily__r 4 года назад +3

    cgmatter rewrites the laws of time 3 seconds is now what we used to call 0.16 seconds

  • @samuelshunk749
    @samuelshunk749 4 года назад +3

    Honestly I love this so much more than a 7 episode beginner series on how to make a doughnut! Lol

  • @parzvalishere
    @parzvalishere Год назад +3

    For anyone who is getting an error...from scene settings change it to cycles, GPU compute and turn on open shading language also save your script with the extension '.osl'

  • @rhyvin2413
    @rhyvin2413 4 года назад +4

    Thank Cheezits I am semi-fluent in a few coding languages, I skipped that information and watch the rest on 2x multiple times, now it's burned into the back of my retinas and all I can see are fractals...i might need to see a doc.

  • @Freah_Meat
    @Freah_Meat 2 года назад

    FINALLY! A RUclips video where I'm not forced to speed up by x2.5 just to get to the point!
    This is my kind of content delivery!

  • @general3978
    @general3978 4 года назад +5

    Fantastically well paced tutorial for such a complex topic, could be a series!

  • @chadkushner6666
    @chadkushner6666 4 года назад +1

    This is everything I've been waiting for

  • @mmitja
    @mmitja 4 года назад +1

    Gotta b kidding me. Already hypnotized by your video and then FRACTALS?!

  • @Theooolone
    @Theooolone 4 года назад +16

    The sponsor was the only thing I understood here.

  • @Darksoulmaster
    @Darksoulmaster 4 года назад +2

    If CGMatter is hearting all comments this fast, he might even be faster in his tutorials, no seriously, I have to watch at 2x speed to understand a word of this video without boring myself to die.

  • @green.616
    @green.616 4 года назад +22

    Please note: if you add command break after assigment "fractalcolor", then you will get a very large increase in the speed of the algorithm.
    shader fractal(
    float creal = 0,
    float cimag = 0,
    point position = P,
    output color fractalcolor = 0
    ) {
    float real = position[0];
    float imag = position[1];

    float m = 500;
    float d = 1000;
    for (float i = 0; i < d; i++) {
    float realtemp = real;
    real = real*real + creal - imag*imag;
    imag = 2*realtemp*imag + cimag;
    float sq = sqrt(real*real + imag*imag);
    float tempcolor = i / m;
    if (sq > 4) {
    fractalcolor = tempcolor;
    break;
    } else if (sq > 3) {
    if (tempcolor - 0.4 > 0) {
    fractalcolor = tempcolor;
    } else {
    fractalcolor = abs(tempcolor-1);
    }
    break;
    }
    }
    }

    • @itaicarmeli1145
      @itaicarmeli1145 Год назад

      awesome 10x! How do I make it work for
      f(z)=Z^3-(z/z^3)
      z = real + imag

  • @johnyray3455
    @johnyray3455 4 года назад

    love how straightforward you are. you kept the video short without the boring chit chat

  • @unfa00
    @unfa00 4 года назад +9

    Note: OSL only works with CPU rendering.
    I wonder if we could do a similar thing with GLSL for Eevee.

    • @CGMatter
      @CGMatter  4 года назад +2

      Ooh, I've never looked into GLSL. Time to research

  • @mqbaka
    @mqbaka 4 года назад +1

    I've been waiting for this.

  • @benjaminyeiser4023
    @benjaminyeiser4023 4 года назад +5

    Epic tutorial, as always, wouldn't mind a basic tutorial in scripting in Blender. With a VERY basic knowledge of python, everything you did made a surprising amount of sense and I waNT MORE!!!!!

  • @crash_programmer1426
    @crash_programmer1426 4 года назад +4

    Ok, fast and totally easy to understand. I like it

  • @InfernoArts
    @InfernoArts 4 года назад +2

    An inspiration as always my boy.

  • @rocksinshoe9930
    @rocksinshoe9930 4 года назад +3

    your last 3 months summed up in 3 minutes? nice

  • @aim__freakz8499
    @aim__freakz8499 4 года назад

    I sometimes wonder why put so much effort in you're videos! They are just so great in any aspect! This must take ages. Love the effort you put it in^^ Keep it up

  • @jeyko666
    @jeyko666 4 года назад

    This is how I usually watch videos on RUclips. Subscribed

  • @johnhansen4794
    @johnhansen4794 4 года назад +4

    I downloaded this into my pron folder and now I am the cube.

  • @Farrukh3D
    @Farrukh3D 4 года назад +1

    Thank you for sharing :)
    Great results and easy to follow ;)

  • @igornowicki29
    @igornowicki29 3 года назад

    CGMatter becomes more and more HowToBasic of Blender community.

  • @Zhincore
    @Zhincore 4 года назад +1

    It's actually very useful that he says "You've been you", cuz after a marathon of CG Matter's video for like an hour... I'm starting to forget who I am

  • @Teflora
    @Teflora 4 года назад +1

    You make this look so easy!

  • @DS6Prophet
    @DS6Prophet 4 года назад +1

    *Lovely!! Thank you!!*

  • @alperenborklu4005
    @alperenborklu4005 4 года назад

    THE MAN!

  • @sabinepiter5470
    @sabinepiter5470 4 года назад

    Wohoooo I did it! Got some amazing wallpapers out of it, thanks so much!

  • @NerdyRodent
    @NerdyRodent 4 года назад +1

    Amazing box 😀

  • @ayeyochi
    @ayeyochi 4 года назад +1

    Why do I love watching these videos even when I know I'm not going to do it now?

    • @CGMatter
      @CGMatter  4 года назад

      thank you for watching anyways :) I try to balance info for people actually doing it and entertainment for everyone else

  • @Philipeace
    @Philipeace 4 года назад +3

    That moment when you did it and you start experimenting around but ask yourself why there is a voice in the background screaming SKILLSHARE in superslowmo

  • @NathanielSkinnerMusic
    @NathanielSkinnerMusic 4 года назад +1

    Accidentally watched this at 1.5x. I exploded into pure energy and now know kung fu. But nothing else.

  • @ringkunmori
    @ringkunmori 4 года назад +2

    Love that you made an experimental rap track cgmatters

  • @constantianossborn4628
    @constantianossborn4628 4 года назад

    bless this tutorial

  • @encryptedmaze
    @encryptedmaze 4 года назад +3

    2:57 Correct, I do love you, CGMatter.

  • @kristiteneqexhi5833
    @kristiteneqexhi5833 4 года назад +6

    Just how i like my toturials non beginer friendly beginer friendly.

  • @iNaurto04
    @iNaurto04 4 года назад +3

    Rap god of blending skills and fractals.

  • @davisburnside9609
    @davisburnside9609 3 года назад

    The madlad

  • @aryanrathorefx
    @aryanrathorefx 4 года назад +1

    WOAH! your raps are soo good, for once i thought it was a tutorial 🎤 very epec

  • @piotao
    @piotao 4 года назад +3

    Great! Today I used an OSL shader which generated hexagons and now you come with fractals? That can't be an accident, maybe it's time to STUDY OSL?

  • @Mplays-os8so
    @Mplays-os8so 3 года назад

    i watched it again at doublespeed! lol it's hypnotising like you zoom into a fractal :D love this video!

  • @Peich2
    @Peich2 4 года назад +1

    Great tutorial as always. And never slow down, please. :)

  • @BLODSWIPER
    @BLODSWIPER 4 года назад +2

    I have been looking for a while after this.
    Thank you.
    Now I just need a way to generate these as a 3D mesh object.
    (More Subvisisions = More Detailed Fractal)

  • @patrickedwards2078
    @patrickedwards2078 4 года назад +6

    and here I was thinking the imaginary numbers I was learning had no practical use

  • @stntoulouse
    @stntoulouse 4 года назад +2

    Wanna see your head BOOM? Plug the Z position value to either Creal or Cimg and plug out that baby to the density input of an principled volume node.... BOOM! 3d fractals

    • @CGMatter
      @CGMatter  4 года назад

      great tip!

    • @flarbinator
      @flarbinator 4 года назад

      @Estienne can you explain this a bit more? sounds really cool but I cant figure it out. Do I do this on top of the other node setup? Do I plug it into Volume of the material output? how do I plug the Z position in? do I use a separate XYZ node? where would it go?

    • @stntoulouse
      @stntoulouse 4 года назад +1

      @@flarbinator If I remember correctly :
      1. Resurrect the default cube and use it instead of that boring plane
      2. Create the same script node
      3. Connect a Separate XYZ node to the vector output of the Mapping node
      4. Connect the Z output of the Separate XYZ node to either the Creal or the Cimag input of the script node
      5. Keep the ColorRamp node plugged to the sript node and disconnect it from the material surface input. Instead, connect it to a Math node with a multiply factor of something like 10. Try to "tighten" the gradient zone of the ColorRamp or increase the multiply factor to make the fractal less "blurry"
      6. Connect that value output of the Math node to the intensity input of an Emission shader and plug this bad boy into the volume input of the material node.
      This should work ...
      Try to play with these things to improve the results : Z scale of the mapping node, switching between Creal and Cimag, multiply factor of the Math node, Color ramp...

    • @flarbinator
      @flarbinator 4 года назад

      @@stntoulouse Thank you soo much for the thought out response! I will give it a shot as soon as I get home! You Rock!

  • @jonfishe176
    @jonfishe176 4 года назад

    Thanks this was simple and easy to follow

  • @badhaloninja
    @badhaloninja 4 года назад +3

    Congrats on 69k subscribers

  • @TheTubejunky
    @TheTubejunky 4 года назад

    I need to change the oil in my ears before my hearing locks up. Thanks Mr.CGMatter! Great Tutorial.

  • @spacetimelapses8244
    @spacetimelapses8244 4 года назад +1

    So this is how you can program your shaders? Will definitely give this a try. Thank you 👍

  • @mileswaugh
    @mileswaugh 4 года назад +2

    Nice! I never thought of the idea of iterating it through the python console instead of duplicating the node group lots and lots of times, and connecting them all together!

    • @mileswaugh
      @mileswaugh 4 года назад

      But just as another comment, you could've made the "i" in the for loop an integer

    • @mileswaugh
      @mileswaugh 4 года назад +1

      Also, you can use a while loop instead of a for loop, so you don't have to calculate more iterations than you really need to, speeding up rendering. But nevertheless, a very helpful tutorial!

    • @mileswaugh
      @mileswaugh 4 года назад +1

      Try this instead:
      shader fractal(
      float creal = 0, float cimg = 0, point position = P, output color fractalcolor = 0, int iterations = 0
      ){
      float real = position[0];
      float img = position[1];
      int i = 0;
      while(sqrt(real*real + img*img)

    • @CGMatter
      @CGMatter  4 года назад

      good point :) optimizing is important

    • @mileswaugh
      @mileswaugh 4 года назад +2

      For anyone still reading this, I have made an updated Mandelbrot script, complete with a maximum iteration count, rotation, zooming, and coordinate-choosing.
      If "mandelbrot" is 0, it will render the Julia set, and if it is 1, it will render the Mandelbrot set. If "zoom" is increased linearly by increments of 1, the plane will zoom in by 2 times. Animating "zoom" linearly will provide constant zooming. Rotation is in degrees, but you can change it pretty easily in the code. Don't change the "space" vector, unless you want to remap the Mandelbrot set to a different space. You can change the "coordinate" vector to change the coordinate that the Mandelbrot set will be centered on. Lastly, for mandelbrot zooms, you probably want a relatively high iteration count (500-1000). I have included the complete code below:
      shader fractal(
      float creal = 0,
      float cimg = 0,
      point space = P,
      point coordinate = 0,
      output color fractalcolor = 0,
      int iterations = 0,
      float mandelbrot = 1,
      float rotation = 0,
      float zoom = 0
      ){
      float div = pow(2,zoom);
      float rBase = ((space[0]/div)+coordinate[0]);
      float iBase = ((space[1]/div)+coordinate[1]);
      float pi = 3.141592653589793238462643383;
      float rx = sin((rotation*pi)/180);
      float ry = cos((rotation*pi)/180);
      float cr = (creal*ry - cimg*rx)*(1-mandelbrot) + mandelbrot*(rBase*ry - iBase*rx);
      float ci = (cimg*ry + creal*rx)*(1-mandelbrot) + mandelbrot*(iBase*ry + rBase*rx);
      float real = (rBase*ry - iBase*rx);
      float img = (iBase*ry + rBase*rx);
      int i = 0;
      while(sqrt(real*real + img*img)

  • @Filip_Z
    @Filip_Z 4 года назад +2

    Awesome video! :D

    • @CGMatter
      @CGMatter  4 года назад

      Thank you Filip!

  • @MandMs05
    @MandMs05 4 года назад +1

    Honestly, at this point, I'm not subscribed for the tutorial, I'm subscribed for the fast hyperactive random comedy in the tutorial x3

  • @kevinthoriya691
    @kevinthoriya691 4 года назад +1

    wow You Are Great. i love the way that you explain ....

  • @earthcantholdme1209
    @earthcantholdme1209 4 года назад +1

    bruh this guy just explained imaginary numbers, fractals, and sponsored skillshare in 200 seconds

  • @trm245
    @trm245 4 года назад

    These videos just sumarizes the modern kid wanting everything fast even though good art takes time and patience. All that said, tho, I enjoy your vids haha

  • @FutaCockWorshipper
    @FutaCockWorshipper 4 года назад +2

    Time to study this video for the next decade

  • @notarobot528
    @notarobot528 4 года назад +2

    I am calmly stressed now, thank you

  • @Der12teEisvogel
    @Der12teEisvogel 4 года назад +3

    Just watched this in the lecture about complex numbers thinking i could escape them

  • @WangleLine
    @WangleLine 4 года назад +2

    the fastest man on the internet

    • @CGMatter
      @CGMatter  4 года назад +1

      damn straight

    • @WangleLine
      @WangleLine 4 года назад +1

      @@CGMatter I watched the video on 2x speed and died

  • @chaoticprogramming
    @chaoticprogramming 4 года назад +8

    :-1
    SyntaxError: invalid syntax location:
    ^
    shader fractal(
    File "\Text", line 1
    WHY ME

    • @josephpasfield2557
      @josephpasfield2557 4 года назад

      the same thing happened to me. let me know if you found a fix for it.

    • @TehSpeedRunner
      @TehSpeedRunner 4 года назад

      @@josephpasfield2557 dont Run Script, just plug it in the Shading tab

    • @flarbinator
      @flarbinator 4 года назад

      @@josephpasfield2557 It is all case sensitive, make you follow it exactly, I had the same error and realized i had written fractalColor instead of what it should be fractalcolor. It fixed it

    • @AdityaManoj123
      @AdityaManoj123 4 года назад +3

      shader fractal(
      float creal = 0,
      float cimag = 0,
      point position = P,
      output color fractalcolor = 0
      ){
      float real = position[0];
      float imag = position[1];
      for(float i = 0; i < 200; i++){
      float realtemp = real;
      real = real*real - imag*imag + creal;
      imag = 2*realtemp*imag +cimag;
      if(sqrt(real*real+imag*imag)>4){
      fractalcolor = i/200;
      }
      }
      }

    • @clairekovchegov8078
      @clairekovchegov8078 3 года назад

      @@TehSpeedRunner Sorry, but what does this mean? I put the code in exactly as he had it, plugged in the nodes but it's still giving me the error message from the original comment

  • @AgitatedRivetingTtotT
    @AgitatedRivetingTtotT 3 года назад

    We need a cg matter for all sciences and arts

  • @FinnT730
    @FinnT730 4 года назад +1

    the people who have disliked this video, where always the people in math class who got a 'A' and this this is stupid.....
    Keep up the amazing work.

  • @KiR_3d
    @KiR_3d 4 года назад

    Mind blowing )))

  • @Derpduck.
    @Derpduck. 2 года назад +1

    This made me to a jump spin jump hyper front flip on my trampoline.

  • @letterborneVods
    @letterborneVods 4 года назад +3

    I would like to see the bloopers for this video.

  • @prodbymocanu
    @prodbymocanu 4 года назад +3

    Brb I still have hope for the molecular tut

  • @riley530
    @riley530 4 года назад

    CGMatter taking the time to Heart all our comments. True saint here

  • @laurentbessault4769
    @laurentbessault4769 2 года назад

    very clear explanations ;-)

  • @-TheFacelessGamer-
    @-TheFacelessGamer- 4 года назад +2

    I don't understand the coding one bit but I love how, even complex the tutorial is, it's still really easy to follow along and create something amazing. Keep up the great videos! I'm wondering though, do you speed up your talking in editing or do you actually talk like you drank 200 cups of coffee?

    • @CGMatter
      @CGMatter  4 года назад +1

      I've done both. If I'm in a good mood I'll do it for real (maybe 2-3 sentences at a time), otherwise I just talk normally (with a bit of a different inflection) and speed it up.

  • @OrangeC7
    @OrangeC7 4 года назад +3

    Man this tutorial was a long one