| 202 | } |
| 203 | |
| 204 | void PeriodicBoundaryRemesher::collapse_short_bd_edges(Float tol) { |
| 205 | collapse_short_bd_edges(min_axis_marker[X], tol); |
| 206 | collapse_short_bd_edges(max_axis_marker[X], tol); |
| 207 | collapse_short_bd_edges(min_axis_marker[Y], tol); |
| 208 | collapse_short_bd_edges(max_axis_marker[Y], tol); |
| 209 | collapse_short_bd_edges(min_axis_marker[Z], tol); |
| 210 | collapse_short_bd_edges(max_axis_marker[Z], tol); |
| 211 | } |
| 212 | |
| 213 | void PeriodicBoundaryRemesher::collapse_short_bd_edges(short label, Float tol) { |
| 214 | BoxChecker checker(m_bbox_min, m_bbox_max); |
nothing calls this directly
no test coverage detected