What does it mean to normalize a value?

It’s a mathematical term and this link explains its meaning in quite simple terms:

Operations in 2D and 3D computer graphics are often performed using copies of vectors that have been normalized ie. converted to unit vectors… Normalizing a vector involves two steps:

  1. calculate its length, then,
  2. divide each of its (xy or xyz) components by its length…

Leave a Comment