How to think about Quaternions without your brain exploding

Поділитися
Вставка
  • Опубліковано 18 чер 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
  • Ігри

КОМЕНТАРІ • 77

  • @susanollington5257
    @susanollington5257 Рік тому +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  Рік тому +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 Рік тому +1

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

  • @angeldude101
    @angeldude101 Рік тому +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 8 місяців тому +2

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

  • @yijieding5610
    @yijieding5610 10 місяців тому +5

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

  • @midniteoilsoftware
    @midniteoilsoftware Рік тому +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!

  • @behrampatel3563
    @behrampatel3563 8 місяців тому +2

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

  • @zoop391
    @zoop391 11 місяців тому +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 Рік тому +2

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

  • @darrennew8211
    @darrennew8211 7 місяців тому +1

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

  • @botalex4845
    @botalex4845 Рік тому +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 Рік тому +7

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

    • @angeldude101
      @angeldude101 10 місяців тому +2

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

    • @gameuniverse941
      @gameuniverse941 10 місяців тому

      Rubik’s*

    • @pronounjow
      @pronounjow 8 місяців тому

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

    • @angeldude101
      @angeldude101 8 місяців тому +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.

  • @user-dd9is6iy9m
    @user-dd9is6iy9m Рік тому +3

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

    • @AlexRoseGames
      @AlexRoseGames  Рік тому +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

  • @breakdancerQ
    @breakdancerQ 9 місяців тому +2

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

  • @MattRix
    @MattRix Рік тому +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.

  • @michaeldiaz4285
    @michaeldiaz4285 Рік тому +1

    Solid explanations and examples

  • @ModerateDev
    @ModerateDev 5 місяців тому

    The end of this video was enlightening I thank you !

  • @TrueBlur
    @TrueBlur Рік тому +2

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

  • @mactyler
    @mactyler Рік тому +1

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

  • @iraf27
    @iraf27 Місяць тому +1

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

  • @_tioanon
    @_tioanon Рік тому +1

    That's abbsolutely brilliant. Thank you!

  • @Ar3Ar3
    @Ar3Ar3 Рік тому +1

    You just made Quaternions easy for me.

  • @RaphpowerSGSUModding
    @RaphpowerSGSUModding Рік тому

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

  • @fuseteam
    @fuseteam 7 місяців тому +1

    instructions unclear
    solved a rubik's cube with quaternions

  • @carstenschluter3446
    @carstenschluter3446 Місяць тому +1

    legend

  • @peggycarter6515
    @peggycarter6515 2 місяці тому +1

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

  • @PaulSpeed42
    @PaulSpeed42 Рік тому +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 Рік тому +1

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

    • @PaulSpeed42
      @PaulSpeed42 Рік тому

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

    • @FranziskanerFranz
      @FranziskanerFranz Рік тому

      @@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 10 місяців тому +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.

  • @cristianjuarez1086
    @cristianjuarez1086 Рік тому +1

    Excellento

  • @petethechin
    @petethechin Рік тому +3

    Im still confused.....

  • @spoopyradicalsnake
    @spoopyradicalsnake Рік тому

    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

  • @gasparliboreiro4572
    @gasparliboreiro4572 7 місяців тому

    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  7 місяців тому

      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)

  • @andrey730
    @andrey730 7 місяців тому

    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  7 місяців тому

      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 5 місяців тому

    Really cool to use rubik cube

  • @danibiyarslanov
    @danibiyarslanov 10 місяців тому +1

    i like the title

  • @Jay-kb7if
    @Jay-kb7if 11 місяців тому

    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.

  • @thtdrgnmn
    @thtdrgnmn 2 місяці тому

    Me want know how make quaternion relative to other quaternion

    • @AlexRoseGames
      @AlexRoseGames  2 місяці тому +2

      quatBRelativeToA = quatB * inverse(quatA)

    • @AlexRoseGames
      @AlexRoseGames  2 місяці тому +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 2 місяці тому +1

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

  • @fakeit6339
    @fakeit6339 Рік тому

    that rubiks website or game please

    • @AlexRoseGames
      @AlexRoseGames  Рік тому +1

      just google rubiks online, I went on the first link

  • @radishmonster2760
    @radishmonster2760 Рік тому

    Are you related to mike rose?

  • @timlindberg3833
    @timlindberg3833 5 місяців тому

    A vector also has a magnitude 🤓

    • @AlexRoseGames
      @AlexRoseGames  5 місяців тому

      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

  • @no3339
    @no3339 Рік тому

    Geometric algebra >>

  • @zeusifer007
    @zeusifer007 Рік тому

    tNice tutorials software

  • @josephrussell1419
    @josephrussell1419 4 місяці тому

    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.

  • @critical_always
    @critical_always 3 місяці тому

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

    • @AlexRoseGames
      @AlexRoseGames  3 місяці тому

      I'm 32, this is how I speak in lectures

  • @KaoukabiJaouad
    @KaoukabiJaouad 11 місяців тому +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  11 місяців тому +10

      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 11 місяців тому +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  9 місяців тому +18

      @@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 2 місяці тому +4

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

  • @jr8209
    @jr8209 Рік тому

    The puzzle cube adds unnecessary complexity.