I am trying to plot an stl file but it showing error

13 vues (au cours des 30 derniers jours)
abu sharique shamshad khan
abu sharique shamshad khan le 19 Août 2021
FV = stlread('Part2.stl');
disp(FV);
plot(FV);
Error using plot
Data must be numeric, datetime, duration or an array convertible to double.
Error in PART1 (line 3)
plot(FV);

Réponses (2)

Wan Ji
Wan Ji le 19 Août 2021
Modifié(e) : Wan Ji le 19 Août 2021
Use triplot
FV = stlread('Part2.stl');
triplot(FV)
  1 commentaire
Wan Ji
Wan Ji le 19 Août 2021
Or you can use patch
patch('vertices', FV.Points, 'faces', FV.ConnectivityList, ...
'facevertexcdata',FV.Points(:,2),'facecolor','interp','facealpha',0.4 );
colormap(jet)

Connectez-vous pour commenter.


Simon Chan
Simon Chan le 19 Août 2021

function trimesh is another option

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by