?? cable.h
字號:
#ifndef CABLE_H#define CABLE_Hclass Cable{ public: int c1, c2; /*computers connected */ int x1, y1, x2, y2; /*endpoints of line representing cable */ int x, y; /*current location of spark */ float fx, fy; /*needed for line drawing */ int delay; /*how much time until spark leaves */ int active; /*is spark moving and from which end */ int index; void setup(); void draw(); void update(); int onspark(int locx, int locy);};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -