i want to draw a triangle with vertices on 3 axis, how to do it? and also how to draw a incircle in it?
20 ビュー (過去 30 日間)
表示 古いコメント
lets say the vertices are (1,0,0), (0,1,0), (0,0,1)
0 件のコメント
回答 (1 件)
Cris LaPierre
2021 年 10 月 13 日
You could just use plot3. Just remember to close the loop.
plot3([1,0,0,1], [0,1,0,0], [0,0,1,0])
If you want it filled in, you could use fill3.
figure
fill3([1,0,0], [0,1,0], [0,0,1],'m')
2 件のコメント
Cris LaPierre
2021 年 10 月 13 日
Same process. You just need a lot more points to make the shape look circular.
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!