Constructor for n bins with an optional offset. * * \param n number of bins. * \param phase starting phase. * \param perimeter range after which value wraps around. * \param label description of the axis. */
| 217 | * \param label description of the axis. |
| 218 | */ |
| 219 | explicit circular(unsigned n, value_type phase = 0.0, value_type perimeter = two_pi(), |
| 220 | string_view label = {}, const allocator_type& a = allocator_type()) |
| 221 | : base_type(n, uoflow_type::off, label, a), phase_(phase), perimeter_(perimeter) {} |
| 222 | |
| 223 | circular() = default; |
| 224 | circular(const circular&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected