mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 12:58:00 +03:00
Merge branch 'fix_msvc_warnings' into 'master'
Some checks failed
Build and test / Ubuntu (push) Has been cancelled
Build and test / MacOS (push) Has been cancelled
Build and test / Read .env file and expose it as output (push) Has been cancelled
Build and test / Windows (2019) (push) Has been cancelled
Build and test / Windows (2022) (push) Has been cancelled
Some checks failed
Build and test / Ubuntu (push) Has been cancelled
Build and test / MacOS (push) Has been cancelled
Build and test / Read .env file and expose it as output (push) Has been cancelled
Build and test / Windows (2019) (push) Has been cancelled
Build and test / Windows (2022) (push) Has been cancelled
Fix msvc warnings See merge request OpenMW/openmw!4579
This commit is contained in:
commit
569ed4559f
3 changed files with 8 additions and 7 deletions
|
@ -51,7 +51,7 @@ namespace Misc
|
|||
const std::pair<osg::Quat, osg::Vec3f> eulerAnglesXZQuat[] = {
|
||||
{
|
||||
osg::Quat(1, 0, 0, 0),
|
||||
osg::Vec3f(0, 0, osg::PI),
|
||||
osg::Vec3f(0, 0, osg::PIf),
|
||||
},
|
||||
{
|
||||
osg::Quat(0, 1, 0, 0),
|
||||
|
@ -59,7 +59,7 @@ namespace Misc
|
|||
},
|
||||
{
|
||||
osg::Quat(0, 0, 1, 0),
|
||||
osg::Vec3f(0, 0, osg::PI),
|
||||
osg::Vec3f(0, 0, osg::PIf),
|
||||
},
|
||||
{
|
||||
osg::Quat(0, 0, 0, 1),
|
||||
|
@ -128,15 +128,15 @@ namespace Misc
|
|||
const std::pair<osg::Quat, osg::Vec3f> eulerAnglesZYXQuat[] = {
|
||||
{
|
||||
osg::Quat(1, 0, 0, 0),
|
||||
osg::Vec3f(osg::PI, 0, 0),
|
||||
osg::Vec3f(osg::PIf, 0, 0),
|
||||
},
|
||||
{
|
||||
osg::Quat(0, 1, 0, 0),
|
||||
osg::Vec3f(osg::PI, 0, osg::PI),
|
||||
osg::Vec3f(osg::PIf, 0, osg::PIf),
|
||||
},
|
||||
{
|
||||
osg::Quat(0, 0, 1, 0),
|
||||
osg::Vec3f(0, 0, osg::PI),
|
||||
osg::Vec3f(0, 0, osg::PIf),
|
||||
},
|
||||
{
|
||||
osg::Quat(0, 0, 0, 1),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue