stl文件为ug导出的一种文件,通过以下代码可以将ug中的模型导入到MATLAB中并且进行编辑
%% 导出ply文件
ptCloud = pcread('m185.ply');
pcshow(ptCloud);
%% 导出stl文件
model = createpde(3);
importGeometry(model, '叶片.stl');
pdegplot(model, 'FaceLabels', 'on');
stl文件为ug导出的一种文件,通过以下代码可以将ug中的模型导入到MATLAB中并且进行编辑
%% 导出ply文件
ptCloud = pcread('m185.ply');
pcshow(ptCloud);
%% 导出stl文件
model = createpde(3);
importGeometry(model, '叶片.stl');
pdegplot(model, 'FaceLabels', 'on');