MCPcopy Create free account
hub / github.com/boostorg/histogram / circular

Method circular

include/boost/histogram/axis/types.hpp:219–221  ·  view source on GitHub ↗

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. */

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected