Qt中的qFastSin原理 - 跟谁学
2015年12月9日 - Qt中的qFastSin原理 inline qreal qFastSin(qreal x) { int si = int(x * (0.5 * QT_SINE_TABLE_SIZE / M_PI)); // Would be more accurate ...
Qt中的qFastSin原理_问答_ThinkSAAS
2015年12月9日 - inline qreal qFastSin(qreal x) { int si = int(x * (0.5 * QT_SINE_TABLE_SIZE / M_PI)); // Would be more accurate with qRound, but slower...
c++ - Qt中的qFastSin原理 - SegmentFault
2015年12月8日 - inline qreal qFastSin(qreal x) { int si = int(x * (0.5 * QT_SINE_TABLE_SIZE / M_PI)); // Would be more accurate with qRound, but slower...