首页 > 其他 > 详细

QT——QPoint类详解

时间:2021-02-21 23:54:27      阅读:160      评论:0      收藏:0      [点我收藏+]

QPoint类的主要功能是定义了平面上的一个点的坐标,数据类型为int类型,如果想要float类型就需要QPointF。

公共函数

QPoint ()
QPoint ( int x, int y )
bool isNull () const——Returns true if both the x and y coordinates are set to 0, otherwise returns false.
int manhattanLength () const——返回x()和y()的绝对值得和,就是传统上的从原点开始的矢量的“曼哈顿长度”
int & rx ()——得到横坐标的引用
int & ry ()——得到纵坐标的引用
void setX ( int x )——设置横坐标
void setY ( int y )——设置纵坐标
int x () const——获得横坐标
int y () const——获得纵坐标
QPoint & operator*= ( float factor )
QPoint & operator*= ( double factor )
QPoint & operator*= ( int factor )
QPoint & operator+= ( const QPoint & point )
QPoint & operator-= ( const QPoint & point )
QPoint & operator/= ( qreal divisor )

QT——QPoint类详解

原文:https://www.cnblogs.com/baiweituyou/p/14427267.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!