フィルターのクリア

How to creat 3D mesh about superellipse hole in a cube

2 ビュー (過去 30 日間)
KOU DU
KOU DU 2018 年 11 月 2 日
コメント済み: KOU DU 2018 年 11 月 5 日
The equation of the superellipse is (x/a)^p+(y/b)^p+(z/c)^p=1. p<2.a,b,c are constant. I want to draw a 3D mesh of the cube include this superellipse. I download iso2mesh which can generate 3D mesh but not succeed.

回答 (1 件)

KSSV
KSSV 2018 年 11 月 2 日
th = linspace(-pi/2,pi/2) ;
phi = linspace(-pi,pi) ;
[T,P ] =meshgrid(th,phi) ;
a = 2; b = 2; c = 1 ;
X = a*cos(T).*cos(P) ;
Y = b*cos(T).*sin(P) ;
Z = c*sin(T) ;
surf(X,Y,Z)
  1 件のコメント
KOU DU
KOU DU 2018 年 11 月 5 日
thank you for you answer. But I don't want to mesh a ellipse.You can see in my question, I give the equation of the hole: (x/a)^p+(y/b)^p+(z/c)^p=1. I want to draw a cube with a hole in the center.

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

カテゴリ

Help Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by