QT 数学计算

QT 次方的计算

  • 1.次方
  • 2.三角函数

1.次方

qreal qPow(qreal x, qreal y) //次方

Returns the value of x raised to the power of y. That is, x is the base and y is the exponent.

返回x的值取y的幂。也就是说,x是底,y是指数。

2.三角函数

QtMath
eg:cos 函数 这个函数算的是弧度 , 所以要把角度转换为弧度 角度*π/180

	qCos(60*M_PI/180);		//Returns the cosine of an angle v in radians.

你可能感兴趣的:(QT学习,c++入门,qt,开发语言)