You are viewing the course site for a past offering of this course. The current offering may be found here.
Lecture 8: Meshes and Geometry Processing (22)
camrankolahdouz

Should be a fun data structure to work with on the project! I assume to to get the next vertex where "Halfedge" is pointing to we need to access the next struct's Vertex?

jsdonn

That's correct, as half-edges are only meant to store their origin points, and not their destination points. Thus, to get the destination point of one half-edge, you access the twin half-edge's origin point.

You must be enrolled in the course to comment