MCPcopy Create free account
hub / github.com/OGRECave/ogre / write

Function write

PlugIns/DotScene/src/DotSceneLoader.cpp:1013–1018  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1011}
1012
1013static void write(pugi::xml_node& node, const Vector3& v)
1014{
1015 node.append_attribute("x") = StringConverter::toString(v.x).c_str();
1016 node.append_attribute("y") = StringConverter::toString(v.y).c_str();
1017 node.append_attribute("z") = StringConverter::toString(v.z).c_str();
1018}
1019
1020static void write(pugi::xml_node& node, const ColourValue& c)
1021{

Callers 1

writeNodeMethod · 0.70

Calls 1

toStringFunction · 0.50

Tested by

no test coverage detected