MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / toString

Function toString

TheForceEngine/TFE_ForceScript/float2.cpp:142–147  ·  view source on GitHub ↗

----------------------- Intrinsics -----------------------

Source from the content-addressed store, hash-verified

140 // Intrinsics
141 //-----------------------
142 std::string toString(const float2& v)
143 {
144 char tmp[1024];
145 sprintf(tmp, "(%g, %g)", v.x, v.y);
146 return std::string(tmp);
147 }
148
149 //-------------------------------------
150 // Registration

Callers 2

compareValuesMethod · 0.50
checkBooleanMethod · 0.50

Calls

no outgoing calls

Tested by 2

compareValuesMethod · 0.40
checkBooleanMethod · 0.40