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

Function toStringF3

TheForceEngine/TFE_ForceScript/float3.cpp:190–195  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

188 // Intrinsics
189 //-----------------------
190 std::string toStringF3(const float3& v)
191 {
192 char tmp[1024];
193 sprintf(tmp, "(%g, %g, %g)", v.x, v.y, v.z);
194 return std::string(tmp);
195 }
196
197 //-------------------------------------
198 // Registration

Callers 6

compareValuesMethod · 0.85
checkBooleanMethod · 0.85
toStringFunction · 0.85
formatValueFunction · 0.85
toStringFunction · 0.85
formatValueFunction · 0.85

Calls

no outgoing calls

Tested by 2

compareValuesMethod · 0.68
checkBooleanMethod · 0.68