how Draw a Tetrahedron in matlab

7 visualizaciones (últimos 30 días)
arnaud ensberg
arnaud ensberg el 26 de Oct. de 2015
Comentada: Star Strider el 27 de Oct. de 2015
  • Item one
  • Item twoplease how to draw a Tetrahedron in matlab ?

Respuestas (1)

Star Strider
Star Strider el 26 de Oct. de 2015
Item one is easy: ... !
Item two: This is one possibility:
X = [1 0 1; 0 0 0; 0 0 0]*1.5;
Y = [0 0 0; 1 0 1; 0 0 0]*1.5;
Z = [0 1 0; 0 0 0; 1 0 1]*1.5;
figure(1)
surf(X, Y, Z)
axis equal
axis([-1 2 -1 2 -1 2])
Experiment with it and with the hgtransform function and its friends to get the result you want.
  2 comentarios
arnaud ensberg
arnaud ensberg el 27 de Oct. de 2015
how I can do to have a empty Tetrahedron please?
Star Strider
Star Strider el 27 de Oct. de 2015
Replace the surf call with mesh.

Iniciar sesión para comentar.

Categorías

Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by