Thread: Points, vectors, matrices

  1. #16
    Registered User
    Join Date
    Dec 2001
    Posts
    47
    you might be confusing vector with vertex, which is a point.

  2. #17
    Blank
    Join Date
    Aug 2001
    Posts
    1,034
    http://www.cpe.ku.ac.th/~pom/courses.../lecture03.ppt
    I knew I could find somebody who uses vectors
    as points.

    I'm not saying a point is a vector. You can take Euclid's definition for a point.

  3. #18
    Sayeh
    Guest
    For the purpose of game development discussions, a point is the same in any n-space.

    It is a coordinate on one or more planes to define a specific location in space. Whether you are on a single plane (linear) which is a line, or 2D (2 planes), or 3D (3 planes), etc.

    A vector is a measure of direction (as referenced from 0) and magnitude. Again, this applies in any number of planes.

    Many people confuse points and vectors because the look so similar. The difference is in the way each is related to 0 (zero).

    And for game development discussions, these are the only ways in which these two are discussed, usually in conjunction with the unit circle.

    ----

    In fact, in many game engines, like Quake for example, Points and Vectors are synonymous because the points are vertexes for walls, but are translated from global to local space and then used as vectors for such things as telling what side of a wall (plane) you are on, etc.

    enjoy.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Help it won't compile!!!!!
    By esbo in forum C Programming
    Replies: 58
    Last Post: 01-04-2009, 03:22 PM
  2. Replies: 8
    Last Post: 11-03-2008, 09:48 PM
  3. Vectors
    By naseerhaider in forum C++ Programming
    Replies: 11
    Last Post: 05-09-2008, 08:21 AM
  4. Yahtzee C++ programme help
    By kenneth_888 in forum C++ Programming
    Replies: 13
    Last Post: 09-05-2007, 02:14 PM
  5. CProg Fantasy Football version pi
    By Govtcheez in forum A Brief History of Cprogramming.com
    Replies: 155
    Last Post: 12-26-2006, 04:30 PM