| 222 | } |
| 223 | |
| 224 | face_descriptor_t hmesh_t::face(const halfedge_descriptor_t& h) const |
| 225 | { |
| 226 | MCUT_ASSERT(h != null_halfedge()); |
| 227 | MCUT_ASSERT((size_t)h < m_halfedges.size() /*m_halfedges.count(h) == 1*/); |
| 228 | const halfedge_data_t& hd = m_halfedges[h]; |
| 229 | return hd.f; |
| 230 | } |
| 231 | |
| 232 | vertex_descriptor_t hmesh_t::vertex(const edge_descriptor_t e, const int v) const |
| 233 | { |
no outgoing calls
no test coverage detected