Changeset 74 for trunk/src/plot_field.m


Ignore:
Timestamp:
Mar 31, 2010, 12:39:26 PM (14 years ago)
Author:
sommeria
Message:

rotate_points: used for geometry_calib was forgotten. It is now added
plot_field now does not consider black the vectors with either vec_F=0 or vec_F=1 (vec_F=0 in the 3D3C software instead of vec_F=1)
set_object and uvmat: improvements for projection plane in volume vel data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plot_field.m

    r73 r74  
    998998       colorlist(nbcolor,:)=[0 0 0]; %add black to the list of colors
    999999       if ~isempty(ivar_FF)
    1000             ind_flag=find(vec_F~=1 & vec_FF==0);  %flag warning but not false
     1000            ind_flag=find(vec_F~=1 & vec_F~=0 & vec_FF==0);  %flag warning but not false
    10011001       else
    1002             ind_flag=find(vec_F~=1);
     1002            ind_flag=find(vec_F~=1 & vec_F~=0);
    10031003       end
    10041004       col_vec(ind_flag)=nbcolor;   
Note: See TracChangeset for help on using the changeset viewer.