• UserNotFound
    link
    fedilink
    22 years ago

    I don’t know her, so maybe my question is stupid, but does she explain math without using code? I, honestly, am too stupid to programing, I don’t understand it. I understand summary, not the second one

    • @BaumGeist@lemmy.ml
      link
      fedilink
      2
      edit-2
      2 years ago

      She has a youtube channel

      I’ve only watched a couple of her videos–on Splines and Bezier curves–and her explanations and animations were intuitive and beautiful to watch, but ultimately her target audience is game devs… So the answer to your question is “technically yes*”

      *it’s with the intent of learning to code the math

    • @only_lurking@lemmy.world
      link
      fedilink
      12 years ago

      I think it would be much better to write it in another language, but here’s another way to do the second one (this is on Visual Basic):

      Dim n as long
      Dim product as long
      Product = 1
      
      For n = 1 to 4
      Product = product * 2 * n
      Next n
      
    • @TeddyPolice@feddit.de
      link
      fedilink
      1
      edit-2
      2 years ago

      Sort of; a lot of what she does is computer graphics, which just happens to be applications of math she explains. There is still code, but sometimes the “code” is a flow graph in Unreal Engine or Blender.