| 82 | void axes_object::tag(std::string_view tag_name) { tag_ = tag_name; } |
| 83 | |
| 84 | bool axes_object::is_2d() { |
| 85 | return axes_category() == axes_category::two_dimensional; |
| 86 | } |
| 87 | |
| 88 | bool axes_object::is_3d() { |
| 89 | return axes_category() == axes_category::three_dimensional || |
nothing calls this directly
no test coverage detected