MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / QueryFloatAttribute

Function QueryFloatAttribute

examples/ThirdPartyLibs/tinyxml2/tinyxml2.h:1511–1519  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1509 }
1510 /// See QueryIntAttribute()
1511 XMLError QueryFloatAttribute(const char* name, float* value) const
1512 {
1513 const XMLAttribute* a = FindAttribute(name);
1514 if (!a)
1515 {
1516 return XML_NO_ATTRIBUTE;
1517 }
1518 return a->QueryFloatValue(value);
1519 }
1520
1521 /// See QueryIntAttribute()
1522 XMLError QueryStringAttribute(const char* name, const char** value) const

Callers 2

QueryAttributeFunction · 0.85
FloatAttributeMethod · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryFloatValueMethod · 0.80

Tested by

no test coverage detected