代码搜索:图形交互
找到约 10,000 项符合「图形交互」的源代码
代码结果 10,000
www.eeworm.com/read/327755/13064839
asm car.asm
DATA SEGMENT
INFO1 DB 0DH,0AH,'INPUT 1,2,OR 3:(1:bird,2:car,3:exit) $'
BUFA DB 200
DB ?
DB 200 DUP(0)
BUFB DB 200 DUP(?)
BIRD DB 76H,10,0,0 ;小鸟的字符图形表
www.eeworm.com/read/327313/13087937
asm car.asm
DATA SEGMENT
INFO1 DB 0DH,0AH,'INPUT 1,2,OR 3:(1:bird,2:car,3:exit) $'
BUFA DB 200
DB ?
DB 200 DUP(0)
BUFB DB 200 DUP(?)
BIRD DB 76H,10,0,0 ;小鸟的字符图形表
www.eeworm.com/read/242170/13090311
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/327001/13104352
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/140057/13113138
m ex0430.m
%使用低层命令创建图形对象画图
h_fig=figure('color','red','menubar','none','position',[0,0,300,300]);
x=0:0.1:2*pi;
y=sin(x).*exp(-x);
h_line1=plot(x,y,'b');
title('y=exp(-x)*sin(x)')
set(gca,'ygrid','on'
www.eeworm.com/read/241807/13115269
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/325030/13229533
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/324789/13245010
m ex5_7.m
x=0:pi/100:2*pi;
y1=2*exp(-0.5*x);
y2=cos(4*pi*x);
plot(x,y1,x,y2)
title('x from 0 to 2{\pi}'); %加图形标题
xlabel('Variable X'); %加X轴说明
ylabel('Variable Y');
www.eeworm.com/read/239706/13260825
txt 说明.txt
开发环境:windows + VC6.0
软件主题:图形 + 文字 + 矢量
软件内容:利用函数getglyphoutline函数得到字体的外框信息,并调用lineto把它画出来。
作者:项坚煜,浙江工业大学
联系方法:unfirewood@etang.com
www.eeworm.com/read/137520/13317251
m ex5_7.m
x=0:pi/100:2*pi;
y1=2*exp(-0.5*x);
y2=cos(4*pi*x);
plot(x,y1,x,y2)
title('x from 0 to 2{\pi}'); %加图形标题
xlabel('Variable X'); %加X轴说明
ylabel('Variable Y');