#pragma once #include #include #include class StringUtils { public: static osg::Vec3 StringToVec3(const char* value); static std::string Vec3ToString(const osg::Vec3& value); static osg::Vec4 StringToVec4(const char* value); static std::string Vec4ToString(const osg::Vec4& value); };