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

Function toStringF4

TheForceEngine/TFE_ForceScript/float4.cpp:522–527  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

520 // Intrinsics
521 //-----------------------
522 std::string toStringF4(const float4& v)
523 {
524 char tmp[1024];
525 sprintf(tmp, "(%g, %g, %g, %g)", v.x, v.y, v.z, v.w);
526 return std::string(tmp);
527 }
528
529 //-------------------------------------
530 // Registration

Callers 5

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

Calls

no outgoing calls

Tested by 2

compareValuesMethod · 0.68
checkBooleanMethod · 0.68