orthogonal projection of 3D nodes onto a 2D plane
I need to project 3D nodes (nodes) onto a 2D plane that I got from the code in FEX.
load xyz
fobjPlane=planarFit(xyz);
for i=1:2
subplot(1,2,i);
[hL,hD]=plot(fobjPlane); %Visualize the fit
end
legend([hL,hD],’Plane fit’, ‘XYZ samples’, ‘Location’,’northoutside’,’FontSize’,15);
subplot(1,2,1)
view([-69.5 -24.6])
subplot(1,2,2)
view([9.6 -35.2])
So I need to always get nodes in space however that lie on that plan.I need to project 3D nodes (nodes) onto a 2D plane that I got from the code in FEX.
load xyz
fobjPlane=planarFit(xyz);
for i=1:2
subplot(1,2,i);
[hL,hD]=plot(fobjPlane); %Visualize the fit
end
legend([hL,hD],’Plane fit’, ‘XYZ samples’, ‘Location’,’northoutside’,’FontSize’,15);
subplot(1,2,1)
view([-69.5 -24.6])
subplot(1,2,2)
view([9.6 -35.2])
So I need to always get nodes in space however that lie on that plan. I need to project 3D nodes (nodes) onto a 2D plane that I got from the code in FEX.
load xyz
fobjPlane=planarFit(xyz);
for i=1:2
subplot(1,2,i);
[hL,hD]=plot(fobjPlane); %Visualize the fit
end
legend([hL,hD],’Plane fit’, ‘XYZ samples’, ‘Location’,’northoutside’,’FontSize’,15);
subplot(1,2,1)
view([-69.5 -24.6])
subplot(1,2,2)
view([9.6 -35.2])
So I need to always get nodes in space however that lie on that plan. nodes, projection, orthogonal, plan MATLAB Answers — New Questions