Skip to content
Snippets Groups Projects
Commit ca2e2c33 authored by Laura Nervo's avatar Laura Nervo Committed by Nicola Vigano
Browse files

gtIPFCmapHexagonalKey : removed fontsize=15 from text


Signed-off-by: default avatarLaura Nervo <laura.nervo@esrf.fr>
parent 67e1f8a2
No related branches found
No related tags found
No related merge requests found
......@@ -109,17 +109,17 @@ poles_r = tan(poles_psi/2);
[poles_x,poles_y] = pol2cart(poles_phi, poles_r);
plot(poles_x, poles_y, 'k*');
text(poles_x(1), poles_y(1), '[0 0 0 1]', 'fontsize', 15, ...
text(poles_x(1), poles_y(1), '[0 0 0 1]', ...
'fontweight', 'bold','VerticalAlignment','top','HorizontalAlignment','left');
text(poles_x(2), poles_y(2), '[1 0 -1 0]', 'fontsize', 15, ...
text(poles_x(2), poles_y(2), '[1 0 -1 0]', ...
'fontweight', 'bold','VerticalAlignment','bottom','HorizontalAlignment','right');
text(poles_x(3), poles_y(3), '[2 -1 -1 0]', 'fontsize', 15, ...
text(poles_x(3), poles_y(3), '[2 -1 -1 0]', ...
'fontweight', 'bold','VerticalAlignment','top','HorizontalAlignment','right');
set(gca, 'Visible', 'off');
% label and sample direction to plot
text(0,pi/6,'IPF','fontsize', 15, ...
text(0,pi/6,'IPF', ...
'fontweight', 'bold','VerticalAlignment','top','HorizontalAlignment','left');
end % end of function
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