Borrar filtros
Borrar filtros

How to create cuboid with known parameters?

5 visualizaciones (últimos 30 días)
rohit
rohit el 18 de Mayo de 2020
Respondida: darova el 18 de Mayo de 2020
I want to create a cuboid in 3D, the information known are:
Coordinates of center of Cuboid (COG -x,y,z) and it's length, breadth, height.
So far I've expressed each coordinates in terms of COG and l,b,h. Is there any other better methods to do it or inbuilt approach ?

Respuesta aceptada

Star Strider
Star Strider el 18 de Mayo de 2020
See if: Plot a Cube centered at the origin can provide some inspiration.

Más respuestas (1)

darova
darova el 18 de Mayo de 2020
Plot cube as a surface
[x,y] = meshgrid([-1 -1 1 1 -1],[-1 -1 1 1]);
z = x*0-1/2;
z([6 7 10 11]) = 1/2;
surf(x/2,y/2,z)
axis vis3d

Categorías

Más información sobre Surface and Mesh Plots 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