Skip to content
Snippets Groups Projects
Commit c3080048 authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Small fixes

parent 6f3e25e7
No related branches found
No related tags found
No related merge requests found
......@@ -89,11 +89,12 @@ function [rgb, Vsst, Vsst_p, Vc_symm] = gtCrystVector2SST(Vc, crystal_system, sy
if any(ok_no)
warning('gtCrystVector2SST:no_indices_found', ...
'Problem when moving to SST triangle, no indices found for vectors:');
disp(' indices:');
disp(find(ok_no));
disp(' vectors:');
disp(Vc(ok_no, :));
'Problem when moving to SST triangle, no indices found for %d vectors over %d.', ...
numel(find(ok_no)), numel(ok));
% disp(' indices:');
% disp(find(ok_no));
% disp(' vectors:');
% disp(Vc(ok_no, :));
iSST(1, ok_no, :) = 1;
anglesR(1, ok_no, :) = 0;
anglesB(1, ok_no, :) = 0;
......
......@@ -83,6 +83,8 @@ function gt6DMakeFigureForPaper( vol, varargin )
set(ax, 'Position', [1 1 12 12])
end
drawnow();
if (~isempty(conf.filename) && strcmpi(conf.filename, 'preview'))
[filename, filedir] = uigetfile({'*.png'; '*.eps'});
if (filename)
......
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