5

我正在尝试在一个 M 文件中绘制 2 个立方体。这是我的代码:

    格式紧凑
    h(1) = axes('位置',[0.2 0.2 0.6 0.6]);
    顶点 = [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'); % 补丁函数
    材质有光泽;
    阿尔法(“颜色”);
    alphamap('rampdown');
    视图(30,30);

现在,我想绘制第二个立方体并替换第一个立方体。有谁知道我该怎么做?

4

2 回答 2

7

也许你想要这样的东西: 在此处输入图像描述

你只需要稍微修改你的原始代码: 1. 定义一个新的立方体,它应该放在第一个里面。2.请记住在“patch”后面加上“hold on”。

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);
于 2013-10-03T08:51:57.530 回答
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
于 2013-04-14T18:16:41.520 回答