3D Hypercube [-1,1]x[-2,3]x[-3,3] meshing by orthotope

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


Oh=OrthMesh(3,15,'box',[-1 1;-2 2;-3 3],'type',type);

figure(1)
Oh.plotmesh('legend',true)

figure(2)
Oh.plotmesh('m',2,'legend',true)

figure(3)
Oh.plotmesh('m',2,'Color',[0.8,0.8,0.8],'FaceColor','none','EdgeAlpha',0.2)
hold on
Oh.plotmesh('m',1,'Linewidth',2,'legend',true)

figure(4)
Oh.plotmesh('m',1,'color','k')
hold on
Oh.plotmesh('m',0,'legend',true)
--------------- demo02
3D Hyperrectangle [-1,1]x[-2,3]x[-3,3] meshing by orthotope
---------------