stl file rendering is not working can you help me to solve it?

1 Ansicht (letzte 30 Tage)
abu sharique shamshad khan
abu sharique shamshad khan am 20 Aug. 2021
Kommentiert: darova am 21 Aug. 2021
FV = stlread('sample.stl');
trimesh(FV)
patch(FV,'FaceColor',[10 10 10],'EdgeColor','none','FaceLighting','gouraud','AmbientStrength',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([-500 500]);
Error using patch
Not enough input arguments.
Error in PART1 (line 3)
patch(FV,'FaceColor',[10 10 10],'EdgeColor','none','FaceLighting','gouraud','AmbientStrength',0.15);

Antworten (1)

Simon Chan
Simon Chan am 20 Aug. 2021
Bearbeitet: Simon Chan am 20 Aug. 2021

You may need trisurf or triplot (2D) instead of function patch.

Community Treasure Hunt

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

Start Hunting!

Translated by