|
发表于 2022-12-30 15:57:54
|
显示全部楼层
可以用patch()命令的patch(FV)形式,具体可以看patch的doc。然后可以随便这么搞一搞角度和颜色:
% Plot the structure
patch(fv,'FaceColor', [0.8 0.8 1.0], ...
'EdgeColor', 'none', ...
'FaceLighting', 'gouraud', ...
'AmbientStrength', 0.15);
% Add a camera light, and tone down the specular highlighting
camlight('headlight');
material('dull');
% Fix the axes scaling, and set a nice view angle
axis('image');
view([-135 35]); |
|