MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / num

Function num

pj_plotting/tests/parameter_form_test.cpp:22–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20namespace {
21
22ParamSpec num(const std::string& name, double def) {
23 ParamSpec p;
24 p.name = name;
25 p.type = ParamType::kNumber;
26 p.default_value = def;
27 return p;
28}
29ParamSpec integer(const std::string& name, int def) {
30 ParamSpec p;
31 p.name = name;

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected