• catloaf
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    1 month ago

    A vector is just a group of numbers. That’s literally all it is.

    But the most common use is to describe something in three dimensions, usually a point in 3D space (x,y,z), or motion (still x,y,z but those numbers are in meters per second or something). But you could also use it for a color (r,g,b).

    But what most people mean when they say “vector” is a set of three numbers, where two are direction and one is magnitude. You know how they’re usually represented by an arrow? The direction components determine which direction that arrow points, and magnitude is the length of the arrow. (In two dimensions, this would probably be degrees of rotation and distance, like in a polar coordinate system.)

    There are mathematical conversions you can do to translate one of those vectors into other forms. One popular one is a conversion to get the coordinates of the point at the top of the arrow.

    • weker01@sh.itjust.works
      link
      fedilink
      arrow-up
      8
      arrow-down
      1
      ·
      1 month ago

      I can’t resist. I’ve been indoctrinated by my math classes: “A vector is an element of a vector field.”

      A bunch of numbers is not immediately a vector. To be a vector you need the defining functions of a vector field also. Like addition and scalar multiplication.

      • catloaf
        link
        fedilink
        arrow-up
        6
        arrow-down
        1
        ·
        1 month ago

        In pure mathematics, that’s. In game engines, a vector is a data type, and you can stuff whatever the fuck you want in its components. Not saying you should, but you can.

        Generally they’re just used where they make sense, like the direction+magnitude example. RGB is a little weird until you realize that a color is really just a point in a 3D space along the red, green, and blue axes.