2013-04-14 199 views
5

我試圖在一個M文件中繪製2個立方體。這是我的代碼:如何在matlab中繪製多個3d立方體

 
    format compact 
    h(1) = axes('Position',[0.2 0.2 0.6 0.6]); 
    vert = [1 1 1; 1 2 1; 2 2 1; 2 1 1 ; ... 
      1 1 2;1 2 2; 2 2 2;2 1 2]; 
    fac = [1 2 3 4; ... 
     2 6 7 3; ... 
     4 3 7 8; ... 
     1 5 8 4; ... 
     1 2 6 5; ... 
     5 6 7 8]; 
    patch('Faces',fac,'Vertices',vert,'FaceColor','r'); % patch function 
    material shiny; 
    alpha('color'); 
    alphamap('rampdown'); 
    view(30,30); 

現在,我想繪製第二個立方體並在第一個立方體內部進行替換。有誰知道我可以如何 做到這一點?

回答

2

使用hold on命令

format compact 
h(1) = axes('Position',[0.2 0.2 0.6 0.6]); 
%----first cube------ 
vert = [1 1 1; 1 2 1; 2 2 1; 2 1 1 ; ... 
     1 1 2;1 2 2; 2 2 2;2 1 2]; 
fac = [1 2 3 4; ... 
    2 6 7 3; ... 
    4 3 7 8; ... 
    1 5 8 4; ... 
    1 2 6 5; ... 
    5 6 7 8]; 
patch('Faces',fac,'Vertices',vert,'FaceColor','r'); % patch function 
material shiny; 
alpha('color'); 
alphamap('rampdown'); 
view(30,30); 

%------second cube----- 
hold on; 
vert2 = [1 1 1; 1 2 1; 2 2 1; 2 1 1 ; ... 
      1 1 2;1 2 2; 2 2 2;2 1 2]/5; 
    fac2 = [1 2 3 4; ... 
     2 6 7 3; ... 
     4 3 7 8; ... 
     1 5 8 4; ... 
     1 2 6 5; ... 
     5 6 7 8]; 
    patch('Faces',fac2,'Vertices',vert2,'FaceColor','b'); % patch function 
+0

感謝您選擇答覆..但我想替換第二個立方體內第一個.. –

+0

你的意思是「地方」裏面第一個第二個立方體?那麼您需要更改vert2的座標,並使第一個立方體透視,以便您可以看到第二個立方體。 – Cici

7

也許你想是這樣的: enter image description here

你只需要稍微修改原密碼:1.定義新的多維數據集,應將其放在在第一個裏面。 2.請記住在「補丁」後添加「保持」。

clf; 
figure(1); 
format compact 
h(1) = axes('Position',[0.2 0.2 0.6 0.6]); 
vert = [1 1 -1; 
     -1 1 -1; 
     -1 1 1; 
     1 1 1; 
     -1 -1 1; 
     1 -1 1; 
     1 -1 -1; 
     -1 -1 -1]; 

fac = [1 2 3 4; 
     4 3 5 6; 
     6 7 8 5; 
     1 2 8 7; 
     6 7 1 4; 
     2 3 5 8]; 

% I defined a new cube whose length is 1 and centers at the origin. 
vert2 = vert * 0.5; 
fac2 = fac; 

patch('Faces',fac,'Vertices',vert,'FaceColor','b'); % patch function 
axis([-1, 1, -1, 1, -1, 1]); 
axis equal; 

hold on; 

patch('Faces', fac2, 'Vertices', vert2, 'FaceColor', 'r'); 
material metal; 
alpha('color'); 
alphamap('rampdown'); 
view(3);