Returns whether the given half-edge is a boundary edge
(&self)
| 32 | impl HalfEdge { |
| 33 | /// Returns whether the given half-edge is a boundary edge |
| 34 | pub fn is_boundary(&self) -> bool { |
| 35 | self.face.is_none() |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | /// A half-edge based triangle mesh data structure |
no outgoing calls
no test coverage detected