xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QPoint.xcsm
浏览该文件的文档.
1//xlang Source, Name:QXPoint.xcsm
2//Date: Mon Oct 21:43:44 2018
3package Qt{
4 @SuppressWarnings public class QPoint{
5 public QPoint(){
6
7 }
8 public QPoint(int _x, int _y){
9 x = _x;
10 y = _y;
11 }
12
13 public int x , y;
14
15 public void offset(int _x,int _y){
16 x += _x;
17 y += _y;
18 }
19
20 public void offset(@NotNilptr QPoint p){
21 x += p.x;
22 y += p.y;
23 }
24
25 public QPoint(long v) {
26 x = (v >> 32) & 0xffffffff;
27 y = v & 0xffffffff;
28 }
29 };
30};
void offset(int _x,int _y)
Definition QPoint.xcsm:15
QPoint(long v)
Definition QPoint.xcsm:25
void offset(@NotNilptr QPoint p)
Definition QPoint.xcsm:20