Contours
A contour is a connected vector of edges. It is used to define the boundary of a face. A contour has to be closed, meaning that the first and last edge have to be the same.
#![allow(unused)] fn main() { pub struct Contour { pub edges: Vec<Edge>, } }