Previous | Next --- Slide 43 of 46
Back to Lecture Thumbnails
BryceSummers
  1. Vertex is called $V$. The normal vector of $V$ is $T$, assume that $T$ is normalized.
  2. Compute $V'$ = average of the positions of the neighbors of $V$.
  3. Let dV = $V' - V$.
  4. Let dT = $(dV \cdot T) \cdot T$// Projection of dV onto T. (Involves a dot product calculation and then a scalar multiplication operation.)
  5. Update the value of $V$ to be $V' - dT$