I need to draw a cube using the patch() command, where the cube is one colour for y>0 and another colour for y<0. Something like this:
I would ideally like the user to be able to simply call patch with a single command (rather than looping over the patch command), like this
patch(x_coords, y_coords, z_coords, colour_data)
I made a working version, as shown in the following, but can anyone suggest a more succinct way to do this?
%%% TOP SECTION VERTICES %%%
xf1 = [1 1 1 1].'; % Face 1
xf2 = [1 1 -1 -1].'; % Face 2
xf3 = [1 1 -1 -1].'; % Face 3
xf4 = -xf1; % Face 4
xf5 = xf2; % Face 5
yf1 = [0 1 1 0].';
yf2 = [0 1 1 0].';
yf3 = [1 1 1 1].';
yf4 = yf1;
yf5 = yf2;
zf1 = [1 1 -1 -1].';
zf2 = [1 1 1 1].';
zf3 = [-1 1 1 -1].';
zf4 = zf1;
zf5 = -zf2;
x_half1 = [xf1 xf2 xf3 xf4 xf5];
y_half1 = [yf1 yf2 yf3 yf4 yf5];
z_half1 = [zf1 zf2 zf3 zf4 zf5];
%%% BOTTOM SECTION VERTICES
x_half2 = x_half1;
y_half2 = -y_half1;
z_half2 = z_half1;
%%%
x_verts = [x_half1 x_half2];
y_verts = [y_half1 y_half2];
z_verts = [z_half1 z_half2];
% Define patch colours
c1 = [255 0 0]/255; % Red colour
c2 = [0 0 255]/255; % Blue colour
C = zeros(10,1,3);
C(1:5,1,1) = c1(1); % First x5 faces are colour 1
C(1:5,1,2) = c1(2);
C(1:5,1,3) = c1(3);
C(6:10,1,1) = c2(1); % Next x5 faces are colour 2
C(6:10,1,2) = c2(2);
C(6:10,1,3) = c2(3);
figure;
patch(x_verts,y_verts,z_verts,C)
view(3)
You could define the
drawCuboid
function as defined at the bottom of this question, then just call it twice with different colours for either side of the y axis. The function works out the locations of the 8 vertices of your cube (or cuboid), then assigns them to a matrix in the correct order required bypatch
to define the 6 faces of 4 vertices. See the code comments for more details.Usage would look like this:
You can get the same result in a single function call, automatically splitting on
y=0
with the following function: