| 155 | } |
| 156 | |
| 157 | vertex_descriptor_t hmesh_t::target(const halfedge_descriptor_t& h) const |
| 158 | { |
| 159 | MCUT_ASSERT(h != null_halfedge()); |
| 160 | MCUT_ASSERT((size_t)h < m_halfedges.size() /*m_halfedges.count(h) == 1*/); |
| 161 | const halfedge_data_t& hd = m_halfedges[h]; |
| 162 | return hd.t; |
| 163 | } |
| 164 | |
| 165 | halfedge_descriptor_t hmesh_t::opposite(const halfedge_descriptor_t& h) const |
| 166 | { |
no outgoing calls
no test coverage detected