Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
913 views
in Technique[技术] by (71.8m points)

plot3d - How to connect three points to a plane in r?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...