Skip to content
Snippets Groups Projects
Commit 4beeb399 authored by Peter Reischig's avatar Peter Reischig Committed by Nicola Vigano
Browse files

Small change in gtPlotUniPlanes.

parent 5c3dec7e
No related branches found
No related tags found
No related merge requests found
% function gtPlotUniPlanes(grain) % function gtPlotUniPlanes(grain)
function gtPlotUniPlanes(grain) function gtPlotUniPlanes(grain)
z=zeros(grain.uni.nof_unipl,1); z = zeros(1,size(grain.uni.pl,2));
figure figure
quiver3(z,z,z,grain.uni.pl(:,1),grain.uni.pl(:,2),grain.uni.pl(:,3)) quiver3(z,z,z,grain.uni.pl(1,:),grain.uni.pl(2,:),grain.uni.pl(3,:))
end end
% function gtPlotUniPlanes(grain)
%
% z=zeros(grain.uni.nof_unipl,1);
%
% figure
% quiver3(z,z,z,grain.uni.pl(:,1),grain.uni.pl(:,2),grain.uni.pl(:,3))
%
% end
% %
% figure % figure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment