How to import geometry from STL without approximation ?

5 ビュー (過去 30 日間)
Sung Wook Choi
Sung Wook Choi 2021 年 8 月 28 日
コメント済み: Sung Wook Choi 2021 年 8 月 29 日
Hi all.
I'm now trying to generate geometry from stl file.
ImportGeometry from .stl makes too low density of vertices(and edges) to simulate because of approximation.
In this reason, I added more vertices to original geometry.
However, adding additional viertices without adding edges makes bad mesh boundary.
Is there any method to import all vertices of stl file or increse vertices density of geometry?
Thanks.

採用された回答

darova
darova 2021 年 8 月 29 日
Here is an example. Read more: 2-D Geometry Creation at Command Line
t = 0:0.2:2*pi; % make sure the curve is unclosed (decsg throws an error)
r = 5 + sin(5*t);
[x,y] = pol2cart(t,r);
dl = [2; length(x); x(:); y(:)]; % [polygon; # of points; x; y]
gd = decsg(dl); % decomposition
[p,e,t] = initmesh(gd,'Hmax',0.5); % max side triangle 0.5
pdemesh(p,e,t);
hold on
plot(x,y,'.g')
  1 件のコメント
Sung Wook Choi
Sung Wook Choi 2021 年 8 月 29 日
Thanks darova! I sort vertices in contour lines and draw geometry using decsg function. It works!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeometry and Mesh についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by