3d Plotting a decagonal pyramid

조회 수: 3 (최근 30일)
Matthew
Matthew 2023년 10월 22일
댓글: Matthew 2023년 10월 22일
what i have so far
r = linspace(0,2*pi);
th = 0:pi/6:2*pi ;
[R,T] = meshgrid(r,th) ;
X = R.*cos(T) ;
Y = R.*sin(T) ;
Z = R ;
surf(X,Y,Z)
What i'm wondering is, how do i make the length of each side of the base a user input,
and how do i make the height of the decagonal pyramid a user input as well.
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2023년 10월 22일
Use input
Though, with the given method of generating the pyramid, the lenght of each side of the base is the same.

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2023년 10월 22일
편집: Matt J 2023년 10월 22일
sidelength=10; height=8; %User inputs
V=nsidedpoly(10,'Side',sidelength).Vertices;
V(end+1,3)=-height;
trisurf( delaunay(V(:,1:2)), V(:,1), V(:,2), V(:,3),'FaceColor','c')
  댓글 수: 3
Matt J
Matt J 2023년 10월 22일
There's nothing wrong with asking more questions, but please Accept-click the answer to this question and post your new one in a new thread.
Matthew
Matthew 2023년 10월 22일
ok will do, thank you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Exploration and Visualization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by