?? hfssuncoveredcylinder.m
字號:
function hfssUncoveredCylinder(fid, Name, Axis, Center, Radius, Height, Units)Center1 = Center;Center2 = Center;switch(Axis) case 'X', Center2(1) = Center2(1) + Height; case 'Y', Center2(2) = Center2(2) + Height; case 'Z', Center2(3) = Center2(3) + Height;end;% create circlescName1 = strcat(Name, '_Edge1');cName2 = strcat(Name, '_Edge2');hfssCircle(fid, cName1, Axis, Center1, Radius, Units, false);hfssCircle(fid, cName2, Axis, Center2, Radius, Units, false);% ... and connect them.hfssConnect(fid, {cName1, cName2});hfssRename(fid, cName1, Name);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -