I would like to plot a plane using a vector that I calculated from 3 points where:
pointA = [0,0,0]; pointB = [-10,-20,10]; pointC = [10,20,10]; plane1 = cr
Here's an easy way to plot the plane using fill3:
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)