本文介绍了如何根据中心和半径在 R 中绘制三维球体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何通过提供中心点和半径在 R 中绘制球体?
例如,像这样:
sphere_3d(center=c(1,1,1), r=2))
绘图将出现在三维坐标系上.
The plot would appear on a three dimensional coordinate system.
推荐答案
在 rgl
包中尝试使用 spheres3d
进行交互式绘图:
Try spheres3d
in the rgl
package for an interactive plot:
library(rgl)
spheres3d(x = 1, y = 1, z = 1, radius = 1)
还有很多其他的方法,所以有用的东西需要更多的投入.
There are many other ways, so what's going to be useful needs more input.
这篇关于如何根据中心和半径在 R 中绘制三维球体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!