📄 point.js
字号:
// Description: js.graphics.Point 结构体
// Author: Changhua.Wan
// Version: 2004.02.02.08
_package("js.graphics");
function js.graphics.Point(_x, _y) {
this.x = isNaN(_x)? 0 : _x;
this.y = isNaN(_y)? 0 : _y;
this.toString = function() {
return(this.x + ',' + this.y);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -