[Home]
[Feed]
[Info]
[Lectures]
[Exercises]
[Login]
Geometry Processing
Previous
|
Next
--- Slide 43 of 46
Back to
Lecture Thumbnails
BryceSummers
10 years ago
Vertex is called $V$. The normal vector of $V$ is $T$, assume that $T$ is normalized.
Compute $V'$ = average of the positions of the neighbors of $V$.
Let dV = $V' - V$.
Let dT = $(dV \cdot T) \cdot T$// Projection of dV onto T. (Involves a dot product calculation and then a scalar multiplication operation.)
Update the value of $V$ to be $V' - dT$