MCPcopy Create free account
hub / github.com/cutdigital/mcut / to_string

Function to_string

source/kernel.cpp:66–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65logger_t* logger_ptr = nullptr;
66std::string to_string(const sm_frag_location_t& v)
67{
68 std::string s;
69 switch (v) {
70 case sm_frag_location_t::ABOVE:
71 s = "a";
72 break;
73 case sm_frag_location_t::BELOW:
74 s = "b";
75 break;
76 case sm_frag_location_t::UNDEFINED:
77 s = "u";
78 break;
79 }
80 return s;
81}
82
83std::string to_string(const cm_patch_location_t& v)
84{

Callers 7

dispatchFunction · 0.85
preproc.cppFile · 0.85
bind_state_implFunction · 0.85
triangulate_faceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected