249 This function converts the \a degrees in double to radians;
250 the angle is casted to a double before the conversion.
251
252 \constraints \c Integral is an integral type.
253
254 \sa qRadiansToDegrees()
255*/
256
257/*!
258 \fn float qRadiansToDegrees(float radians)
259 \relates <QtMath>
260 \since 5.1
261
262 This function converts the \a radians in float to degrees.
263
264 Example:
265
266 \snippet code/src_corelib_kernel_qmath.cpp 2
267
268 \sa qDegreesToRadians()
269*/
270
271/*!
272 \fn double qRadiansToDegrees(double radians)
273 \relates <QtMath>
274 \since 5.1
275
276 This function converts the \a radians in double to degrees.
277
278 Example:
279
280 \snippet code/src_corelib_kernel_qmath.cpp 3
281
282 \sa qDegreesToRadians()
283*/
284
285/*!
286 \fn long double qRadiansToDegrees(long double radians)
287 \relates <QtMath>
288 \since 6.0
289
290 This function converts the \a radians in double to degrees.
291
292 \sa qDegreesToRadians()
293*/
294
295/*!
296 \fn quint32 qNextPowerOfTwo(quint32 value)
297 \relates <QtMath>
298 \since 5.4
299
300 This function returns the nearest power of two greater than \a value. For 0 it returns 1, and for values larger than or equal to 2^31 the result is undefined.
301*/
302
303/*!
304 \fn quint32 qNextPowerOfTwo(qint32 value)
305 \relates <QtMath>
306 \since 5.4
307 \overload
308
309 This function returns the nearest power of two greater than \a value. For negative values the result is undefined.
310*/
311
312/*!
313 \fn quint64 qNextPowerOfTwo(quint64 value)
314 \relates <QtMath>
315 \since 5.4
316
317 This function returns the nearest power of two greater than \a value. For 0 it returns 1, and for values larger than or equal to 2^63 the result is undefined.
318*/
319
320/*!
321 \fn quint64 qNextPowerOfTwo(qint64 value)
322 \relates <QtMath>
323 \since 5.4
324 \overload
325
326 This function returns the nearest power of two greater than \a value. For negative values the result is undefined.