Returns the next half-edge in the loop of the given half-edge, panics if there is none
(&self, half_edge: HalfEdge)
| 179 | |
| 180 | /// Returns the next half-edge in the loop of the given half-edge, panics if there is none |
| 181 | pub fn next(&self, half_edge: HalfEdge) -> HalfEdge { |
| 182 | self.half_edges[half_edge |
| 183 | .next |
| 184 | .expect("half edge must have a next reference")] |
| 185 | } |
| 186 | |
| 187 | /// Returns the next half-edge in the loop of the given half-edge if it exists |
| 188 | pub fn try_next(&self, half_edge: HalfEdge) -> Option<HalfEdge> { |
no outgoing calls
no test coverage detected