フィルターのクリア

Matlab program to draw cubes.

15 ビュー (過去 30 日間)
Suman Maity
Suman Maity 2019 年 1 月 18 日
コメント済み: LAKSHMIKANTH D 2020 年 5 月 12 日
In a presentation I want to draw three cubes with different side. Only sides of the cube will be visible. Can any one help me?

回答 (3 件)

alejandro perez
alejandro perez 2020 年 2 月 2 日
In the description of this video is the code of a cube which rotates, moves and grows up.
  1 件のコメント
Image Analyst
Image Analyst 2020 年 2 月 2 日
Cool!
(Is not spam so I removed the Spam flag.)

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


Luna
Luna 2019 年 1 月 18 日
編集済み: Luna 2019 年 1 月 18 日
Have you ever checked the file exchange? This link might help you: plotcube
Try to put alpha variable 1, and it only shows the sides of the cube as it is given in the example:
hold on;
plotcube([5 5 5],[2 2 2],1,[1 0 0]);
plotcube([5 5 5],[10 10 10],1,[0 1 0]);
plotcube([5 5 5],[20 20 20],1,[0 0 1]);
  2 件のコメント
Luna
Luna 2019 年 1 月 18 日
Please move your comments to your comments section.
You should download the plotcube function above link I mentioned in the answer. from the file exchange and save it first to call that function from your command window.
LINK: plotcube
LAKSHMIKANTH D
LAKSHMIKANTH D 2020 年 5 月 12 日
hold on;
plotcube([5 5 5],
plotcube([5 5 5],
plotcube([5 5 5],

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


Suman Maity
Suman Maity 2019 年 1 月 18 日
sir, above program did not run correctly. Command window gives the follwing massage
Undefined function 'plotcube' for input arguments of type 'double'.
Error in Untitled2 (line 2)
plotcube([5 5 5],[2 2 2],1,[1 0 0]);
sir kindly send me the full program.
I want to draw four cubes of radius 5,7, 8 ,10 respectively.

カテゴリ

Help Center および File ExchangeNumeric Solvers についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by