?? line.js
字號:
/**
* the basic element of graph - line
* @author: shennan amushen@yahoo.com.cn
* @date:2008-1-6
*/
function Line(name,/*Node index*/source,/*Node index*/destination,
/*Position Object*/midPoint,sPoint,dPoint
){
//construction
this.name=name;
this.source=source;
this.destination=destination;
this.midPoint=midPoint;
this.sPoint=sPoint;
this.dPoint=dPoint;
this.index=-1;// save the index in the array
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -