I have two vectors and want to draw a plane that these two vectors construct together.
library(plot3D)
x0 <- c(0, 0)
y0 <- c(0, 0)
z0 <- c(0, 0)
x1 <- c(1,1)
y1 <- c(2,1)
z1 <- c(3,4)
arrows3D(x0, y0, z0, x1, y1, z1, lwd=1, barblen=.05)
So far I have displayed the two vectors on the 3D space. But I want to show the plane (like a rectangle or a surface) that both of them lie on. How can I plot this with R?
question from:
https://stackoverflow.com/questions/65869316/how-to-connect-three-points-to-a-plane-in-r 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…