How can I plot a 3D-plane in Matlab?

Here’s an easy way to plot the plane using fill3:

points=[pointA' pointB' pointC']; % using the data given in the question
fill3(points(1,:),points(2,:),points(3,:),'r')
grid on
alpha(0.3)

enter image description here

Leave a Comment