I want to draw a plane in 3D python plot, without using np.meshgrid
. I have done some Google search and found this code, enter link description here. The heart of this code is command PathPatch
and it works very well in 2D plots. But, I want to plot the vertex given below in 3D plot:
verts = [(0., 0.,0.),
(0., 1.,0.),
(1., 1.,0.),
(1., 0.,0.)]
Is there any command similar to PathPatach
for 3D graphics or any other way to draw the plane in 3D plot? Please help.