| 46 | } |
| 47 | |
| 48 | Vector3 parseVector3(const pugi::xml_node& XMLNode) |
| 49 | { |
| 50 | return Vector3(StringConverter::parseReal(XMLNode.attribute("x").value()), |
| 51 | StringConverter::parseReal(XMLNode.attribute("y").value()), |
| 52 | StringConverter::parseReal(XMLNode.attribute("z").value())); |
| 53 | } |
| 54 | |
| 55 | Quaternion parseQuaternion(const pugi::xml_node& XMLNode) |
| 56 | { |
no test coverage detected