MCPcopy Create free account
hub / github.com/bambulab/BambuStudio / to_string

Function to_string

src/mcut/source/kernel.cpp:56–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54
55logger_t* logger_ptr = nullptr;
56std::string to_string(const sm_frag_location_t& v)
57{
58 std::string s;
59 switch (v) {
60 case sm_frag_location_t::ABOVE:
61 s = "a";
62 break;
63 case sm_frag_location_t::BELOW:
64 s = "b";
65 break;
66 case sm_frag_location_t::UNDEFINED:
67 s = "u";
68 break;
69 }
70 return s;
71}
72
73std::string to_string(const cm_patch_location_t& v)
74{

Callers 6

dispatchFunction · 0.70
preproc.cppFile · 0.70
bind_state_implFunction · 0.70
triangulate_faceFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected