demo02
Contents
type='orthotope';
fprintf('--------------- fc_hypermesh.demos.demo02\n')
fprintf('3D Hyperrectangle [-1,1]x[-2,3]x[-3,3] - mesh wih %ss\n',type)
fprintf('---------------\n')
Oh=fc_hypermesh.OrthMesh(3,15,'box',[-1 1;-2 2;-3 3],'type',type);
close all
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)
fc_tools.graphics.DisplayFigures()
--------------- fc_hypermesh.demos.demo02
3D Hyperrectangle [-1,1]x[-2,3]x[-3,3] - mesh wih orthotopes
---------------


