我一直在尝试向我的Qt添加<QtMath
>,以便可以使用qDegreesToRadians
等,但是当我添加#include <QtMath>
时,它说没有此类文件或目录。
这是Qt关于QtMath的网站:
http://qt-project.org/doc/qt-5.1/qtcore/qtmath.html#details
我如何QtMath,或者我做错了什么?
最佳答案
我在5.1中添加了这些功能,因此无法在5.0.2中使用它们。请参阅每个相应部分中有关的文档说明:
这是相应的Gerrit更改:
Add qDegreesToRadians and qRadiansToDegrees math functions
但是#include <QtMath>
或#include <QtCore/QtMath>
应该可以正常工作(肯定会更新),因为我添加的源代码中包含以下几行:
#if 0
#pragma qt_class(QtMath)
#endif
关于c++ - 如何在Qt 5.0.2中添加/使用<QtMath>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22864872/