Borrar filtros
Borrar filtros

3d Plotting a decagonal pyramid

3 visualizaciones (últimos 30 días)
Matthew
Matthew el 22 de Oct. de 2023
Comentada: Matthew el 22 de Oct. de 2023
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 comentario
Dyuman Joshi
Dyuman Joshi el 22 de Oct. de 2023
Use input
Though, with the given method of generating the pyramid, the lenght of each side of the base is the same.

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 22 de Oct. de 2023
Editada: Matt J el 22 de Oct. de 2023
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 comentarios
Matt J
Matt J el 22 de Oct. de 2023
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 el 22 de Oct. de 2023
ok will do, thank you.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by