| 513 | } |
| 514 | |
| 515 | void test_grid( const geode::RegularGrid3D& grid ) |
| 516 | { |
| 517 | test_cell_number( grid ); |
| 518 | test_cell_index( grid ); |
| 519 | test_vertex_number( grid ); |
| 520 | test_vertex_index( grid ); |
| 521 | test_vertex_on_border( grid ); |
| 522 | test_around_vertex( grid ); |
| 523 | test_cell_geometry( grid ); |
| 524 | test_cell_query( grid ); |
| 525 | test_bounding_box( grid ); |
| 526 | test_closest_vertex( grid ); |
| 527 | test_clone( grid ); |
| 528 | test_io( grid, absl::StrCat( "test.", grid.native_extension() ) ); |
| 529 | } |
| 530 | |
| 531 | void test() |
| 532 | { |
no test coverage detected