This commit is contained in:
xinxiao
2026-03-13 11:24:41 +08:00
commit 04e2bb29c7
238 changed files with 29102 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
function [ ] = plotframe( r )
%PLOTFRAME
%
xe=1000;ye=500;ze=10;
network3D(xe,ye,ze,1,1,1 );
% f1=[335,445,0;
% 335,445,10;
% 335,555,10;
% 335,555,0;
% 335,455,0;];
% plot3(f1(:,1),f1(:,2),f1(:,3));
%
% f2=[445,445,0;
% 445,445,10;
% 445,555,10;
% 445,555,0
% 445,445,0;];
% plot3(f2(:,1),f2(:,2),f2(:,3));
%
% f3=[555,445,0;
% 555,445,10;
% 555,550,10;
% 555,550,0
% 555,445,0;];
% plot3(f3(:,1),f3(:,2),f3(:,3));
%
% f4=[665,445,0;
% 665,445,10;
% 665,555,10;
% 665,555,0
% 665,445,0;];
% plot3(f4(:,1),f4(:,2),f4(:,3));
% hold off
end