1#ifndef TATOOINE_CARTESIAN_AXIS_LABELS_H
2#define TATOOINE_CARTESIAN_AXIS_LABELS_H
8template <std::
size_t I>
13 static constexpr auto value = std::string_view{
"x"};
18 static constexpr auto value = std::string_view{
"y"};
23 static constexpr auto value = std::string_view{
"z"};
26template <std::
size_t I>
35 return cartesian_axis_label<0>();
37 return cartesian_axis_label<1>();
39 return cartesian_axis_label<2>();
Definition: algorithm.h:6
static auto constexpr cartesian_axis_label()
Definition: cartesian_axis_labels.h:27
Definition: cartesian_axis_labels.h:9