3D Hyperrectangle [-1,1]x[-2,3]x[-3,3] meshing by simplicial

type='simplicial';
fprintf('--------------- demo01\n')
fprintf('3D Hyperrectangle [-1,1]x[-2,3]x[-3,3] meshing by %s\n',type)
fprintf('---------------\n')

% %% Generating the mesh by using *OrthMesh* object
Oh=OrthMesh(3,15,'box',[-1 1;-2 2;-3 3],'type',type);

% %% Graphical representations Hypercube mesh
figure(1)
Oh.plotmesh('legend',true)

% %% 2-faces meshes
figure(2)
Oh.plotmesh('m',2,'legend',true)

% ## 1-faces meshes
figure(3)
Oh.plotmesh('m',2,'color',[0.8,0.8,0.8],'EdgeAlpha',0.2,'FaceColor','none')
hold on
Oh.plotmesh('m',1,'Linewidth',2,'legend',true)

% ## 0-faces meshes
figure(4)
Oh.plotmesh('m',1,'color','k')
hold on
Oh.plotmesh('m',0,'legend',true)
--------------- demo01
3D Hyperrectangle [-1,1]x[-2,3]x[-3,3] meshing by simplicial
---------------