本文介绍了如何在stl算法中使用glm的operator ==?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在stl算法中使用glm :: gtx :: comparison中定义的运算符?
Is it possible to use the operators defined in glm::gtx::comparison in stl algorithms?
具体来说,我有以下代码:
Specifically i have this code:
std::vector<glm::ivec3> vecA, vecB; // vectors with content
bool result = std::equal(vecA.begin(), vecA.end(), vecB.begin());
默认情况下,此操作失败,原因是找不到运算符==.
This by default fails cause operator== can't be found.
推荐答案
这是显然是打开错误.
这篇关于如何在stl算法中使用glm的operator ==?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!