Is there a way to remove the mesh from an alphaShape plot?

11 ビュー (過去 30 日間)
A LL
A LL 2022 年 3 月 15 日
回答済み: Voss 2022 年 3 月 15 日
I plot shapes with the function alphaShape (see attached figure).
Is there a way to remove the mesh of the alphaShape to plot the same shape but with a uniform color/shading?
I can see the option to change the color of the shape but not to remove the mesh.
I plot my shapes with the following syntax:
shp1 = alphaShape(x1,y1,1);
shp2 = alphaShape(x2,y2,1);
p1 = plot(shp1,'FaceAlpha',0.5);
p2 = plot(shp2,'FaceColor','red','FaceAlpha',0.5);
Thank you

採用された回答

Voss
Voss 2022 年 3 月 15 日
shp1 = alphaShape(x1,y1,1);
shp2 = alphaShape(x2,y2,1);
p1 = plot(shp1,'FaceAlpha',0.5,'EdgeColor','none');
p2 = plot(shp2,'FaceColor','red','FaceAlpha',0.5,'EdgeColor','none');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBounding Regions についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by