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

Function QueryDoubleAttribute

examples/ThirdPartyLibs/tinyxml2/tinyxml2.h:1501–1509  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1499 }
1500 /// See QueryIntAttribute()
1501 XMLError QueryDoubleAttribute(const char* name, double* value) const
1502 {
1503 const XMLAttribute* a = FindAttribute(name);
1504 if (!a)
1505 {
1506 return XML_NO_ATTRIBUTE;
1507 }
1508 return a->QueryDoubleValue(value);
1509 }
1510 /// See QueryIntAttribute()
1511 XMLError QueryFloatAttribute(const char* name, float* value) const
1512 {

Callers 2

QueryAttributeFunction · 0.85
DoubleAttributeMethod · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryDoubleValueMethod · 0.80

Tested by

no test coverage detected