⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cable.h

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 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 + -