代码搜索:图形交互

找到约 10,000 项符合「图形交互」的源代码

代码结果 10,000
www.eeworm.com/read/38039/1101943

txt pm_expr_graph_list.txt

# {100} (100) [0] pm_expr_graph_list.Label Expression Graph 表达式图形 # [1] apply_btn.Label OK 确定 # [2] cancel_btn.Label Cancel 取消 # [3] primary_var_lyt.Label Primary Variable 主变量 # [4] range_lyt.Labe
www.eeworm.com/read/477111/1363953

m ch3_28.m

load west0479; %加载MATLAB 7.0自带的一个稀疏矩阵 S = west0479; [L,U,P] = luinc(S,'0'); %做不完全LU分解 figure(1); %新开一个图形显示窗口 subplot(2,3,1);
www.eeworm.com/read/466484/1510618

m ch3_28.m

load west0479; %加载MATLAB 7.0自带的一个稀疏矩阵 S = west0479; [L,U,P] = luinc(S,'0'); %做不完全LU分解 figure(1); %新开一个图形显示窗口 subplot(2,3,1);
www.eeworm.com/read/249482/4450258

dat funtc239.dat

函数名称: outtext 函数原型: void far outtext(char far *textstring) 函数功能: 图形模式下在当前位置显示一行字符串 函数返回: 函数说明: textstring 要显示的字符串 所属文件:
www.eeworm.com/read/249482/4450703

dat funtc171.dat

函数名称: getimage 函数原型: void far getimage(int left, int top, int right, int bottom, void far *bitmap) 函数功能: 保存矩形图形屏幕的内容到bitmap缓冲区 函数返回: 函数说明: Left, Top, Right, bottom 矩形屏
www.eeworm.com/read/249482/4450781

dat funtc299.dat

函数名称: setallpalette 函数原型: void far setallpalette(struct palettetype far *palette) 函数功能: 设置EGA/VGA图形系统调色板的所有颜色数值 函数返回: 函数说明: palette 新的调色板颜色数据,该结构如下: struct palettet
www.eeworm.com/read/249482/4450907

dat funtc165.dat

函数名称: getaspectratio 函数原型: void far getaspectratio(int far *xasp, int far *yasp) 函数功能: 得到图形显示的比例因子 函数返回: 函数说明: xasp x方向比例因子,yasp y方向比例因子 所属文件:
www.eeworm.com/read/218114/4864195

m ch3_28.m

load west0479; %加载MATLAB 7.0自带的一个稀疏矩阵 S = west0479; [L,U,P] = luinc(S,'0'); %做不完全LU分解 figure(1); %新开一个图形显示窗口 subplot(2,3,1);
www.eeworm.com/read/329683/3430216

h figstack.h

//程序FIGSTACK.H(8.6.2) 功能:定义多态数据结构的类界面, 堆栈中可存放多类图形 #include enum BOOLEAN{FALSE, TRUE}; class FIGURE{ public: FIGURE(int x, int y); virtual void show()=0; virtual void hide()=0;
www.eeworm.com/read/329683/3430226

h basgraph.h

//程序BASGRAPH.HPP(7.2.4) 功能:定义基本图形元素的类界面 #include enum BOOLEAN{ FALSE, TRUE}; class LOCATION{ public: LOCATION(int x, int y); int get_x(); int get_y(); protected: int x_pos, y