How to think about Quaternions without your brain exploding

Sdílet
Vložit
  • čas přidán 16. 06. 2024
  • Just a little description about Quaternions to use in your game development. Should be useful for Unreal Engine and any other Quaternion using engine (or honestly, any rotator engine), but specifically I used Unity's orientation system and notation for my examples here
  • Hry

Komentáře • 77

  • @yijieding5610
    @yijieding5610 Před 10 měsíci +5

    using cub to do quaternion explanation is just genius. many thanks

  • @susanollington5257
    @susanollington5257 Před rokem +18

    Haven’t really needed to use this before because I’ve been in 2D, but this was fascinating and a good explanation of something I’ve always heard people explain as “something you don’t really need to understand yet”

    • @AlexRoseGames
      @AlexRoseGames  Před rokem +4

      I still find use for quaternions in 2d. They're nice because they can always find the shortest angle. say you're at 270 degrees and you want to get to 30 degrees, the best way to go is to translate from 270 to 360/0 through to 30 (60 degrees), but if you lerped you would go 240 degrees in the opposite direction instead. you can fix this with modulos but sometimes it's easier to just use quaternions, especially if you're moving things around by position too. like you want an eye that spins but the iris follows you

    • @MattRix
      @MattRix Před rokem +1

      @@AlexRoseGames Worth noting that Unity users can also use Mathf.DeltaAngle() for that specific use case.

  • @angeldude101
    @angeldude101 Před rokem +13

    Quaternions really are very natural for representing rotations when they're not being unnecessarily obfuscated. The three "imaginary" -bivector- terms are pretty understandable; they're the 3 basis axes / basis planes and all of them do 180° rotations (with 2-sided rotations). The scalar then has absolutely nothing to do with 4D space and _everything_ to do with _doing absolutely nothing._ A quaternion is just a weighted sum of rotations around each of the three basis axes plus the action of doing nothing.
    I will briefly mention the existence of "dual quaternions," which let you encode the transformation as a multiplication just like the rotations, and then you can just translate from the object to the origin, apply a rotation, and then translate back as TRT¯¹ (assuming you're composing from right to left), and the whole thing will perform a rotation around the origin of the object in the same plane as R. It's basically what you did manually with addition, but more composable.

    • @behrampatel3563
      @behrampatel3563 Před 8 měsíci +2

      Thanks for adding your valuable insight. Do you have a page or blog I can follow you on.
      Cheers,
      b

  • @behrampatel3563
    @behrampatel3563 Před 8 měsíci +2

    This is a very unique take on the path to understand what quaternions are. It helps a lot . Thank you

  • @midniteoilsoftware
    @midniteoilsoftware Před rokem +4

    I’ve been using Quaternion.Identity and Quaternion.LookRotation for a couple years but but never understood how they worked until watching your video. Thanks for this!

  • @darrennew8211
    @darrennew8211 Před 7 měsíci +1

    This is a very clever presentation that does a great job of making the non-commutitive nature of Q's intuitive.

  • @zoop391
    @zoop391 Před 11 měsíci +1

    Just what I needed :) I've been struggling to understand quaternions mathematically, so just to understand how to use the tool is good enough for me for now.

  • @DanielJKlug
    @DanielJKlug Před rokem +2

    This is super helpful as a visualization tool. Thank you!

  • @breakdancerQ
    @breakdancerQ Před 9 měsíci +2

    This is a very good tip on how to visualise these damn things! Not there yet but this certainly helps a ton!

  • @michaeldiaz4285
    @michaeldiaz4285 Před rokem +1

    Solid explanations and examples

  • @TrueBlur
    @TrueBlur Před rokem +2

    This helped me get through a problem on the last day of my internship! Thanks!

  • @botalex4845
    @botalex4845 Před rokem +17

    I cannot believe that a 10-minute video, that was made with paint and a Rubix cube explained Quaternions better than 3blue1grey and their fancy graphics.
    Thank you!

    • @minhajsixbyte
      @minhajsixbyte Před rokem +7

      one is mathematician's explanation, the other is programmer's explanation.

    • @angeldude101
      @angeldude101 Před 10 měsíci +2

      ​@@minhajsixbyte Ya, 3B1B's explanation is the programmer's explanation, and this is the mathematician's explanation.

    • @gameuniverse941
      @gameuniverse941 Před 10 měsíci

      Rubik’s*

    • @pronounjow
      @pronounjow Před 8 měsíci

      ​@@angeldude101Isn't it the other way around?

    • @angeldude101
      @angeldude101 Před 8 měsíci +2

      @@pronounjow Nope. A programmer would care mostly about how to implement something and use it. From the perspective of lists of numbers, quaternions are 4D and have crazy multiplication table that you just need to write down in your code and then forget about it. A mathematician should actually care about the meaning behind the symbols and the relationships between them.
      Basically, as a programmer, quaternions are a compact but arcane data structure that happens to be good at rotating vectors.
      As a mathematician, quaternions _are_ rotations, and the multiplication table is just a reflection of the physical rotations that quaternions translate into algebra.

  • @MattRix
    @MattRix Před rokem +3

    This is great! I find that most of the time when I use quaternions I'm thinking of them in the way you talked about right at the end, either as a Quaternion.LookRotation (forward vector, up vector) or as an angle around an axis vector with Quaternion.AngleAxis (angle, axis vector), which works like a shish kebab as you described.

  • @user-dd9is6iy9m
    @user-dd9is6iy9m Před rokem +3

    This was pretty helpful! As a guy who hates dealing with Quaternions - thank you.

    • @AlexRoseGames
      @AlexRoseGames  Před rokem +4

      no problem! whenever I looked for how to deal with quaternions it was always like "now imagine this 4th dimensional sphere" and I was just like... okay this makes zero intuitive sense to me

  • @mactyler
    @mactyler Před rokem +1

    Dude oh my god, thank you so much for this, first time its ever clicked for me!

  • @ModerateDev
    @ModerateDev Před 5 měsíci

    The end of this video was enlightening I thank you !

  • @fuseteam
    @fuseteam Před 7 měsíci +1

    instructions unclear
    solved a rubik's cube with quaternions

  • @_tioanon
    @_tioanon Před rokem +1

    That's abbsolutely brilliant. Thank you!

  • @RaphpowerSGSUModding
    @RaphpowerSGSUModding Před rokem

    When you make a sonic fan-game and your character need to have a tube based movement system this is perfect

  • @Ar3Ar3
    @Ar3Ar3 Před rokem +1

    You just made Quaternions easy for me.

  • @iraf27
    @iraf27 Před měsícem +1

    Thanks a lot! maybe in a few hours i can understand the concept of quaternion, if my brain don't explode before it

  • @carstenschluter3446
    @carstenschluter3446 Před měsícem +1

    legend

  • @petethechin
    @petethechin Před rokem +3

    Im still confused.....

  • @peggycarter6515
    @peggycarter6515 Před 2 měsíci +1

    5:21 şiş kebap dediği yerde koptum 😅güzel betimleme olmuş

  • @cristianjuarez1086
    @cristianjuarez1086 Před rokem +1

    Excellento

  • @PaulSpeed42
    @PaulSpeed42 Před rokem +2

    In case it's helpful to anyone stuck using 3x3 rotation matrices, for everything in this video Quaternion can be replaced with 3x3 rotation matrix and its all still true. They are interchangeable in this conversation. But I guess "quaternion" is easier to say than "3D rotation" all the time.

    • @FranziskanerFranz
      @FranziskanerFranz Před rokem +1

      Not quite interchangeable, Euler angles suffer from the gimble lock problem, which quaternions inherently overcome.

    • @PaulSpeed42
      @PaulSpeed42 Před rokem

      @@FranziskanerFranz that's why I never mentioned Euler angles.

    • @FranziskanerFranz
      @FranziskanerFranz Před rokem

      @@PaulSpeed42 ah that's right, my bad. As soon as I read matrix I jumped to euler angles, simply because I never wrote down quaternions as matrix.

    • @angeldude101
      @angeldude101 Před 10 měsíci +1

      Rotation matrices are not rotations, but rather _orientations._ They don't distinguish between clockwise and counterclockwise. Quaternions meanwhile are _rotations,_ with 2 distinct quaternions for every orientation, one which travels clockwise from a given perspective, and one which travels counterclockwise from that perspective.
      Also regardless of rounding errors, every quaternion is a scaled copy of a unit rotation, where as matrices, with 5 extra redundant components can be much easier to accidentally turn a normalized orientation into something that definitely _isn't_ an orientation.

  • @spoopyradicalsnake
    @spoopyradicalsnake Před rokem

    to really understand quaternions you need : direction cosine matrix, euler rotation matrix --> rodrigues rotation formula, finally quaternions.
    when you use euler rotation matrix, you will see why we need quaternions really bad

  • @andrey730
    @andrey730 Před 7 měsíci

    Example at 9:17 helps understanding how quaternions inverses can be used but I'd probably just add to pos_A some offset_vector multiplied by transform_matrix_A.
    Or it can even be just 1 basis vector from transform_matrix_A multiplied by offset magnitude (in case if we're sure about the axis).
    Unsure though how much quaternions more efficient than matrix multiplication. Multiplying matrix by vector typically takes 9 multiplications and 3 adds, don't know about the quats.
    PS Love the shish kebab metaphor 😂

    • @AlexRoseGames
      @AlexRoseGames  Před 7 měsíci

      yeah, the example was there to demonstrate how you can operate on inverses with a simple example, but in reality I would do the same as you. though there are more complicated scenarios where I would use the method I described

  • @zanagi
    @zanagi Před 5 měsíci

    Really cool to use rubik cube

  • @danibiyarslanov
    @danibiyarslanov Před 10 měsíci +1

    i like the title

  • @Jay-kb7if
    @Jay-kb7if Před 10 měsíci

    it's frustrating that it's all about the gimbal lock. People need to start thinking about whether they can rotate at points other than the x y or z axis with a gimbal.

  • @gasparliboreiro4572
    @gasparliboreiro4572 Před 7 měsíci

    can someone explain me how to interpretate the components in a cuaternion? like a + ib + jc + kd
    i can only think about a, b, c, d as a 4d vector, like (a, b, c, d), how does that ends up being a rotation?

    • @AlexRoseGames
      @AlexRoseGames  Před 7 měsíci

      it's not something that's easily human parseable. if pitch is a, yaw is b and roll is c, quaternion x y z and w are:
      x = sin(c/2) * cos(a/2) * cos(b/2) - cos(c/2) * sin(a/2) * sin(b/2)
      y = cos(c/2) * sin(a/2) * cos(b/2) + sin(c/2) * cos(a/2) * sin(b/2)
      z = cos(c/2) * cos(a/2) * sin(b/2) - sin(c/2) * sin(a/2) * cos(b/2)
      w = cos(c/2) * cos(a/2) * cos(b/2) + sin(c/2) * sin(a/2) * sin(b/2)

  • @radishmonster2760
    @radishmonster2760 Před rokem

    Are you related to mike rose?

  • @fakeit6339
    @fakeit6339 Před rokem

    that rubiks website or game please

    • @AlexRoseGames
      @AlexRoseGames  Před rokem +1

      just google rubiks online, I went on the first link

  • @timlindberg3833
    @timlindberg3833 Před 5 měsíci

    A vector also has a magnitude 🤓

    • @AlexRoseGames
      @AlexRoseGames  Před 5 měsíci

      in this case I was using the word direction a bit colloquially for non layman, as in like "the pub is 5 miles north east of here". more technically I meant a displacement (aka a unit vector direction and its magnitude) not just a normalised direction. the point anyway was to distinguish that a vector does not have a preferred origin, it describes a transform that takes you from any arbitrary point to another calculable point based on that transformation applied in a specific frame

  • @thtdrgnmn
    @thtdrgnmn Před 2 měsíci

    Me want know how make quaternion relative to other quaternion

    • @AlexRoseGames
      @AlexRoseGames  Před 2 měsíci +2

      quatBRelativeToA = quatB * inverse(quatA)

    • @AlexRoseGames
      @AlexRoseGames  Před 2 měsíci +2

      e g let's say you spun your cube to configuration A: +z then +x then +x
      the inverse of this (to get back to a solved rubiks cube) is -x then -x then -z
      let's say your new configuration B is +z +x + x +y. I think you will agree that relative to A you would expect B to be simply +y
      so let's see, inverse (A) = -x -x -z, B is +z +x +x +y, so B * inverse(A) does all of the righthand instructions then all of the left
      so -x -x -z +z +x +x +y
      as you can see from the middle, the -z and +z cancel, then the two pairs of x's cancel, leaving just +y. so we can see in this example the formula works

    • @thtdrgnmn
      @thtdrgnmn Před 2 měsíci +1

      @@AlexRoseGames this single comment just helped me understand quaternions to a higher degree

  • @no3339
    @no3339 Před rokem

    Geometric algebra >>

  • @josephrussell1419
    @josephrussell1419 Před 4 měsíci

    You are comparing how multiplication works in quaternions with how addition works in 3D vectors. But the quaternions still also have addition with an additive identity and additive inverses and behave just like 4D vectors in that sense. You saying that quaternions have multiplication "instead" of addition will make people feel they understand things when they'll just get horribly confused if they delve any deeper. Also, the two systems do not have different notions of an "origin". You are confusing the idea of an origin in the sense of (0,0,0) or (0,0,0,0), i.e., a coordinate system, with the idea of identity with respect to some transformation. When we say that one times two equals two, and two times 1/2 equals one, we don't call "one" the "origin". It's the same in any higher-dimensional number system. I like the Rubik's Cube demo though.

  • @zeusifer007
    @zeusifer007 Před rokem

    tNice tutorials software

  • @critical_always
    @critical_always Před 3 měsíci

    Why have all the kiddies started talking in that weird exaggerated wayje

  • @KaoukabiJaouad
    @KaoukabiJaouad Před 11 měsíci +11

    you didn't explained quaternions at all, you explained basic rotations, and transformations, the whole point of quaternions is avoid gimbal lock, so it never ever happen, you introduced your videos with that premise and the whole time you didn't tackle the subject.

    • @AlexRoseGames
      @AlexRoseGames  Před 11 měsíci +9

      the video is called how to *think about* quaternions, the description states it's to use in your game engine. in the first 25 seconds I said I wouldn't be talking about the mathematical aspect of quaternions. this video is aimed at people who need to use quaternions in their development. if you want a mathematical description of quaternions I recommend 3blue1brown's video, it should be the top hit on youtube when you search up quaternions

    • @KaoukabiJaouad
      @KaoukabiJaouad Před 11 měsíci +1

      @@AlexRoseGames you made a mistake, just change the video description, and put mathematical rotations applied to games, if you put quaternions there, you have to talk about what makes quaternions, quaternions, you introduced the video on gimbal lock and the need for quaternions and you followed on rotations being not commutative the order is important(that algebra 101), and you stretched that point the whole video, your title is a clickbait, people are so dumb look at the comment below this one, one guy thought you explained quaternions better than 3blue1brown.

    • @AlexRoseGames
      @AlexRoseGames  Před 9 měsíci +17

      @@KaoukabiJaouad you are just not the target audience for this video. 3blue1brown's video is great, the video you want to watch already exists. you are irrationally mad that people here found this video useful, they're exactly whom I made it for. developers applying quaternions to game development or robotics don't need to know about complex spaces, they need an intuitive way to think about applying them. if you didn't listen to the intro or read the description, that's a you problem not a me problem

    • @Oxygenationatom
      @Oxygenationatom Před 2 měsíci +3

      @@AlexRoseGamesim so sorry that you have to deal with people like this

  • @jr8209
    @jr8209 Před rokem

    The puzzle cube adds unnecessary complexity.