亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? room.txt

?? 在混響環境中
?? TXT
?? 第 1 頁 / 共 3 頁
字號:
 set(hv(i),'interruptible','off')
end

%initial audience dimensions
adi=ceil(zdi/2);

%create initial audience limits
naud=4;
for i=1:naud,
 hw(i)=plot([0 1],[1 1],'k');
 hv(i)=plot(1,1,'.k');
end
hww=[hw(4) hw(1);hw(1) hw(2);hw(2) hw(3);hw(3) hw(4)];
hvv=[hv(1) hv(2);hv(2) hv(3);hv(3) hv(4);hv(4) hv(1);];
x0=xmid-adi/2;
y0=ymid-adi/2;
x1=xmid+adi/2;
y1=ymid+adi/2;
xaud=[x0 x1;x1 x1;x1 x0;x0 x0];
yaud=[y0 y0;y0 y1;y1 y1;y1 y0];
ud=[];
for i=1:naud,
 set(hw(i),'xdata',xaud(i,:))
 set(hw(i),'ydata',yaud(i,:))
 ud.con=hvv(i,:);
 set(hw(i),'userdata',ud)
 set(hw(i),'tag','acouaudienceedge')
 set(hv(i),'xdata',xaud(i,1))
 set(hv(i),'ydata',yaud(i,1))
 set(hv(i),'tag','acouaudiencevertex')
 set(hv(i),'markersize',15)
 set(hv(i),'buttondownfcn','set(gcf,''windowbuttonmotionfcn'',''radit2d(''''moveaudiencepoint'''')'')')
 set(hv(i),'interruptible','off')
 ud.con=hww(i,:);
 set(hv(i),'userdata',ud)
end

%create audience surface
[xaudmesh,yaudmesh]=meshgrid(0:0.05:1,0:0.05:1);
h=surf(xaudmesh,yaudmesh,-0.01*ones(size(xaudmesh)),ones(size(xaudmesh)));
set(h,'edgecolor','none')
set(h,'facecolor','interp')
set(h,'tag','acouaudiencesurface')
set(h,'faceoffsetbias',0.3/zdi)
men=uicontextmenu;
set(h,'uicontextmenu',men)
item1=uimenu(men,'label','precision','callback','radit2d(''surfaceprecision'')');
item2=uimenu(men,'separator','on','label','include room','callback','radit2d(''matchroom'')');
item3=uimenu(men,'label','reduce size','callback','radit2d(''reducesurfacesize'')');
item4=uimenu(men,'label','area=','separator','on');

%create source
h=plot(xwall(1)+gsize,ymid,'og');
set(h,'tag','acousource')
set(h,'markersize',8)
set(h,'markerfacecolor','r')
set(h,'markeredgecolor','k')
set(h,'buttondownfcn','set(gcf,''windowbuttonmotionfcn'',''radit2d(''''movesource'''')'')')
set(h,'interruptible','off')

%create receptor
h=plot(xwall(2)-gsize,ymid,'og');
set(h,'tag','acoureceptor')
set(h,'markersize',12)
set(h,'marker','pentagram')
%set(h,'color',[1 1 0])
set(h,'markerfacecolor','y')
set(h,'markeredgecolor','k')
set(h,'buttondownfcn','set(gcf,''windowbuttonmotionfcn'',''radit2d(''''movereceptor'''')'')')
set(h,'interruptible','off')

%create buttons
h=uicontrol('style','pushbutton');
set(h,'position',[1 1 40 20])
set(h,'string','grid')
set(h,'tooltipstring','Set grid spacing')
set(h,'tag','acougridbutton')
set(h,'callback','radit2d(''changegrid'')')
%set(h,'userdata',[zdi width])

h=uicontrol('style','togglebutton');
set(h,'position',[41 1 40 20])
set(h,'value',1)
set(h,'string','snap')
set(h,'tooltipstring','Set points to snap to grid')
set(h,'tag','acousnapbutton')

h=uicontrol('style','togglebutton');
set(h,'position',[81 1 60 20])
set(h,'value',0)
set(h,'string','constrain')
set(h,'tooltipstring','Constrain wall points to be between neighbours')
set(h,'tag','acouconstrainbutton')

h=uicontrol('style','radiobutton');
set(h,'position',[145 1 50 20])
set(h,'value',0)
set(h,'string','grid')
set(h,'tooltipstring','Hide or display grid')
set(h,'tag','acouhidegridbutton')
set(h,'callback','radit2d(''hidegrid'')')

h=uicontrol('style','radiobutton');
set(h,'position',[195 1 55 20])
set(h,'value',1)
set(h,'string','images')
set(h,'tooltipstring','Hide or display images')
set(h,'tag','acouhideimagebutton')
set(h,'callback','radit2d(''select'')')

h=uicontrol('style','radiobutton');
set(h,'position',[250 1 50 20])
set(h,'value',1)
set(h,'string','radius')
set(h,'tooltipstring','Hide or display radius')
set(h,'tag','acouhideradiusbutton')
set(h,'callback','radit2d(''select'')')

h=uicontrol('style','togglebutton');
set(h,'position',[305 1 35 20])
set(h,'value',0)
set(h,'string','zoom')
set(h,'tooltipstring','View drawing zone only or include images')
set(h,'tag','acouzoombutton')
set(h,'callback','radit2d(''zoom'')')

h=uicontrol('style','togglebutton');
set(h,'position',[340 1 35 20])
set(h,'value',0)
set(h,'string','view')
set(h,'tooltipstring','Set drawing zone size, center drawing, ...')
set(h,'tag','acouviewbutton')
set(h,'callback','radit2d(''view'')')

h=uicontrol('style','pushbutton');
set(h,'position',[290 50 20 20])
set(h,'tooltipstring','Center drawing')
set(h,'tag','acoucenter')
set(h,'string','C')
set(h,'callback','radit2d(''movedrawing'')')

h=uicontrol('style','pushbutton');
set(h,'position',[290 70 20 20])
set(h,'tooltipstring','Move drawing up')
set(h,'tag','acoumoveup')
cdata=createarrow('up');
set(h,'cdata',cdata)
set(h,'callback','radit2d(''movedrawing'')')

h=uicontrol('style','pushbutton');
set(h,'position',[310 50 20 20])
set(h,'tooltipstring','Move drawing right')
set(h,'tag','acoumoveright')
cdata=createarrow('right');
set(h,'cdata',cdata)
set(h,'callback','radit2d(''movedrawing'')')

h=uicontrol('style','pushbutton');
set(h,'position',[290 30 20 20])
set(h,'tooltipstring','Move drawing down')
set(h,'tag','acoumovedown')
cdata=createarrow('down');
set(h,'cdata',cdata)
set(h,'callback','radit2d(''movedrawing'')')

h=uicontrol('style','pushbutton');
set(h,'position',[270 50 20 20])
set(h,'tooltipstring','Move drawing left')
set(h,'tag','acoumoveleft')
cdata=createarrow('left');
set(h,'cdata',cdata)
set(h,'callback','radit2d(''movedrawing'')')

h=uicontrol('style','pushbutton');
set(h,'position',[420 50 20 20])
set(h,'string','>>')
set(h,'tag','acouexpand++')
set(h,'tooltipstring','Expand working zone (+5)')
set(h,'callback','radit2d(''expand'')')

h=uicontrol('style','pushbutton');
set(h,'position',[400 50 20 20])
set(h,'string','>')
set(h,'tag','acouexpand+')
set(h,'tooltipstring','Expand working zone (+1)')
set(h,'callback','radit2d(''expand'')')

h=uicontrol('style','pushbutton');
set(h,'position',[380 50 20 20])
set(h,'string','M')
set(h,'tag','acouexpandm')
set(h,'tooltipstring','Set working zone to match drawing')
set(h,'callback','radit2d(''expand'')')

h=uicontrol('style','pushbutton');
set(h,'position',[360 50 20 20])
set(h,'string','<')
set(h,'tag','acouexpand-')
set(h,'tooltipstring','Reduce working zone (-1)')
set(h,'callback','radit2d(''expand'')')

h=uicontrol('style','pushbutton');
set(h,'position',[340 50 20 20])
set(h,'string','<<')
set(h,'tag','acouexpand--')
set(h,'tooltipstring','Reduce working zone (+5)')
set(h,'callback','radit2d(''expand'')')

h=uicontrol('style','listbox');
set(h,'position',[555 460 70 75])
set(h,'value',1)
set(h,'string','all|direct|wall 1|wall 2|wall 3|wall 4')
set(h,'tooltipstring','Select wall')
set(h,'tag','acouselectbutton')
set(h,'callback','radit2d(''select'')')

h=uicontrol('style','radiobutton');
set(h,'position',[565 70 70 20])
set(h,'value',1)
set(h,'string','reflections')
set(h,'tooltipstring','View reflection number')
set(h,'tag','acouselectreflection')
set(h,'callback','radit2d(''select'')')

h=uicontrol('style','radiobutton');
set(h,'position',[565 50 70 20])
set(h,'value',0)
set(h,'string','decibels')
set(h,'tooltipstring','View sound power value')
set(h,'tag','acouselectdecibel')
set(h,'callback','radit2d(''select'')')

h=uicontrol('style','radiobutton');
set(h,'position',[565 30 70 20])
set(h,'value',0)
set(h,'string','direct')
set(h,'tooltipstring','Add direct sound')
set(h,'tag','acouselectdirect')
set(h,'callback','radit2d(''select'')')

h=uicontrol('style','pushbutton');
set(h,'position',[380 1 20 20])
set(h,'string','S')
set(h,'tooltipstring','Set source position manually')
set(h,'callback','radit2d(''setsourceposition'')')

h=uicontrol('style','pushbutton');
set(h,'position',[400 1 20 20])
set(h,'string','R')
set(h,'tooltipstring','Set receptor position manually')
set(h,'callback','radit2d(''setreceptorposition'')')

h=uicontrol('style','pushbutton');
set(h,'position',[425 1 50 20])
set(h,'string','polar')
set(h,'tooltipstring','Create a polar diagram of receptor received sound')
set(h,'callback','radit2d(''polardiagram'')')

h=uicontrol('style','pushbutton');
set(h,'position',[475 1 40 20])
set(h,'string','scan')
set(h,'tooltipstring','Import room design from a scanned plan')
set(h,'tag','acouanim')
set(h,'callback','radit2d(''scan'')')

h=uicontrol('style','pushbutton');
set(h,'position',[519 1 40 20])
set(h,'string','print')
set(h,'tooltipstring','Print current figure')
set(h,'tag','acouprint')
set(h,'callback','radit2d(''print'')')

h=uicontrol('style','pushbutton');
set(h,'position',[559 1 40 20])
set(h,'string','load')
set(h,'tooltipstring','Load an existing case')
set(h,'tag','acouload')
set(h,'callback','radit2d(''load'')')

h=uicontrol('style','pushbutton');
set(h,'position',[599 1 40 20])
set(h,'string','save')
set(h,'tooltipstring','Save current case')
set(h,'tag','acousave')
set(h,'callback','radit2d(''save'')')

h=uicontrol('style','togglebutton');
set(h,'position',[1 270 20 20])
set(h,'string','M')
set(h,'tooltipstring','Display cursor point coordinates and value')
set(h,'callback','radit2d(''setcursormeasure'')')

h=uicontrol('style','pushbutton');
set(h,'position',[1 250 20 20])
set(h,'string','U')
set(h,'tooltipstring','Undo last topology change')
set(h,'callback','radit2d(''undo'')')

h=uicontrol('style','pushbutton');
set(h,'position',[1 540 20 20])
set(h,'string','?')
set(h,'tooltipstring','get help and examples on the radit2d www site')
set(h,'callback','eval(''web ltas19.meca.ulg.ac.be/radit2d -browser'');')

%create text
ht=text;
set(ht,'tag','acoutext','fontsize',10,'fontname','Times New Roman')
set(ht,'units','normalized','position',[0.5 1.015],'parent',gca,'string','a')
set(ht,'horizontalalignment','center','verticalalignment','bottom')

%create figure userdata
ud.name='not saved';
ud.height=zdi;
ud.gsize=gsize;
ud.xlim=[0 zdi];
ud.ylim=[-zdi/2 zdi/2];
ud.Lw=100;
ud.Hr=0;
ud.lastaction='';
ud.colormap='color';
ud.climmode='auto';
ud.clim=[0 100];
ud.displayvalue='reflection';
ud.undo=[];
set(hfig,'userdata',ud)

%refresh figure
changegrid(gsize)
acouview
refreshsurfaceposition
checkroomconvexity
refreshimages
setlayer
refreshsurfacevalues
selectvalue
hidegrid
refreshwallmenu
saveundo

return

%=========================================================================
function [] = setactivewall

%determine button pressed
if ~strcmpi(get(gcf,'selectiontype'),'normal'),
 return
end

%get object handle
ha=findobj('tag','acouaxes','parent',gcf);
hw=flipud(findobj('tag','acouwall','parent',ha));
ii=find(hw==gcbo);
if ~isempty(ii),
 hb=findobj('tag','acouselectbutton','parent',gcf);
 set(hb,'value',ii+2)
 selectvalue
end

return

%=========================================================================
function [] = setlayer

%get object handle
ha=findobj('tag','acouaxes','parent',gcf);
hch0=get(ha,'children');
hso=findobj('tag','acousource','parent',ha);
hre=findobj('tag','acoureceptor','parent',ha);
hxa=findobj('tag','acouXaxis','parent',ha);
hya=findobj('tag','acouYaxis','parent',ha);
hw=findobj('tag','acouwall','parent',ha);
hwv=findobj('tag','acouwallvertex','parent',ha);
hae=findobj('tag','acouaudienceedge','parent',ha);
hav=findobj('tag','acouaudiencevertex','parent',ha);
hi=findobj('tag','acouimage','parent',ha);
hr=findobj('tag','acouradius','parent',ha);
hgr=findobj('tag','acougrid','parent',ha);
hsu=findobj('tag','acouaudiencesurface','parent',ha);
ht=findobj('tag','acoutext','parent',ha);
hmt=findobj('tag','acoumeasuretext','parent',ha);

%set order counterclockwise
nwall=length(hw);
i=1;
ind(1)=nwall;
while i < nwall,
 ud=get(hw(ind(i)),'userdata');
 con=ud.con;
 h2=con(2);
 ud=get(h2,'userdata');
 con=ud.con;
 hw2=con(2);
 ii=find(hw == hw2);
 i=i+1;
 ind(i)=ii;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久99久久精品欧美| 三级在线观看一区二区| 一区二区三区波多野结衣在线观看| 日韩伦理免费电影| 日精品一区二区三区| 岛国精品在线观看| 欧美日韩精品一区二区| 26uuu国产日韩综合| 日韩精品一区二区三区三区免费| 国产人久久人人人人爽| 亚洲黄色片在线观看| 青青草一区二区三区| 成人av午夜影院| 欧美日本国产一区| 国产精品丝袜91| 视频一区视频二区中文| 成人开心网精品视频| 欧美一级淫片007| 亚洲国产精品激情在线观看| 香蕉久久一区二区不卡无毒影院| 成人性生交大片免费看中文网站| 成人黄色a**站在线观看| 成人精品免费看| 久久影院电视剧免费观看| 午夜精品福利在线| 欧美日韩久久一区二区| 亚洲免费观看高清完整| 99久久久久免费精品国产 | 99精品欧美一区二区蜜桃免费| 久久一区二区三区国产精品| 蜜桃精品视频在线观看| 日韩一区二区三区视频在线| 日日噜噜夜夜狠狠视频欧美人| 欧美精品视频www在线观看| 亚洲一区二区三区在线看| 欧美无乱码久久久免费午夜一区| 亚洲在线观看免费视频| 欧美三级日本三级少妇99| 亚洲午夜精品在线| 777奇米四色成人影色区| 免费看精品久久片| 91精品国产一区二区三区蜜臀| 蜜臀91精品一区二区三区 | 黑人巨大精品欧美黑白配亚洲| 欧美mv日韩mv国产| 国产98色在线|日韩| 国产精品人人做人人爽人人添| 成人免费三级在线| 亚洲精品国产精华液| 欧美精品乱码久久久久久| 日韩不卡一二三区| 久久亚洲精华国产精华液 | 国产一区二区精品久久91| 国产欧美视频一区二区| 91黄视频在线观看| 日韩成人一级大片| 欧美韩日一区二区三区四区| 色婷婷国产精品久久包臀| 午夜影院久久久| 26uuu亚洲婷婷狠狠天堂| 91日韩一区二区三区| 日韩高清在线观看| 国产欧美日韩不卡| 欧美日韩成人一区二区| 激情小说欧美图片| 亚洲欧美日韩人成在线播放| 88在线观看91蜜桃国自产| 国产美女在线观看一区| 一区二区三区色| 精品国产三级a在线观看| 91丨九色丨尤物| 狠狠色丁香婷婷综合久久片| 亚洲麻豆国产自偷在线| 精品第一国产综合精品aⅴ| 在线观看www91| 国产精品一区二区你懂的| 亚洲资源中文字幕| 日本一区二区高清| 91精品黄色片免费大全| 91免费看视频| 国产高清不卡二三区| 天堂av在线一区| 亚洲丝袜自拍清纯另类| 久久色在线观看| 欧美一级搡bbbb搡bbbb| 色综合久久88色综合天天6| 黄色日韩网站视频| 日韩av中文在线观看| 亚洲影院在线观看| 国产精品久久一级| 久久日韩精品一区二区五区| 欧美日本免费一区二区三区| 色哟哟欧美精品| 大陆成人av片| 国产精品一级黄| 久久国产婷婷国产香蕉| 五月天一区二区三区| 亚洲男同性视频| 国产精品嫩草久久久久| 久久久蜜桃精品| 精品国内二区三区| 欧美大片日本大片免费观看| 欧美日韩国产在线播放网站| 欧美三级乱人伦电影| 91麻豆产精品久久久久久| 成人app网站| 成人网在线播放| 不卡一区二区中文字幕| 国产成人免费在线视频| 国产91高潮流白浆在线麻豆| 国产乱子轮精品视频| 精品一区二区免费| 国产在线不卡视频| 国产精品影视在线观看| 黑人巨大精品欧美一区| 国产麻豆精品theporn| 久久99久久久欧美国产| 毛片一区二区三区| 久久99精品国产麻豆婷婷| 麻豆精品在线观看| 韩国在线一区二区| 国产综合一区二区| 成人av免费在线播放| 91免费在线播放| 91啪亚洲精品| 欧美猛男超大videosgay| 91精品国产综合久久香蕉的特点 | 国产精品视频一区二区三区不卡| 国产日韩av一区| 中文字幕亚洲在| 亚洲图片欧美一区| 日韩av电影天堂| 国产成人综合亚洲91猫咪| 91丨九色丨黑人外教| 欧美在线看片a免费观看| 欧美一级片在线观看| 国产午夜精品一区二区三区嫩草| 国产精品丝袜久久久久久app| 亚洲精品日韩专区silk| 日韩高清在线一区| 丰满少妇在线播放bd日韩电影| 99re这里只有精品6| 91.xcao| 日本一区二区三区视频视频| 亚洲欧美日韩国产中文在线| 午夜精品成人在线视频| 国产一区在线看| 色婷婷激情综合| 久久一区二区三区四区| 亚洲欧美视频在线观看视频| 日本伊人午夜精品| 成人av网站免费| 日韩写真欧美这视频| 中文字幕在线观看不卡视频| 三级一区在线视频先锋| 风间由美一区二区av101| 欧美精品久久一区| 国产精品福利在线播放| 麻豆国产91在线播放| 日本精品免费观看高清观看| 日韩午夜激情电影| 一区二区三区中文字幕电影| 国产制服丝袜一区| 欧美高清性hdvideosex| 亚洲欧洲日韩av| 国产成人午夜99999| 欧美一区二区啪啪| 一区二区三区蜜桃网| 国产一区三区三区| 制服丝袜亚洲色图| 夜夜揉揉日日人人青青一国产精品| 久久99国产精品成人| 欧美日韩视频专区在线播放| 国产精品传媒视频| 国产精品1024| 精品毛片乱码1区2区3区| 首页亚洲欧美制服丝腿| 欧洲国内综合视频| 亚洲欧美一区二区三区孕妇| 国产成人av资源| 精品久久人人做人人爱| 丝瓜av网站精品一区二区| 一本色道综合亚洲| 国产精品欧美一区喷水| 国产呦萝稀缺另类资源| 欧美成人一区二区三区片免费 | 国产99精品在线观看| 精品国产免费人成在线观看| 日韩精品亚洲一区二区三区免费| 欧美综合在线视频| 亚洲一区二区影院| 色先锋aa成人| 亚洲综合偷拍欧美一区色| 色综合中文字幕| 一区二区三区视频在线观看| 91豆麻精品91久久久久久| 亚洲欧洲中文日韩久久av乱码| 91丨porny丨在线| 亚洲一区二区三区美女| 欧美日韩色一区|