Skip to content

Commit

Permalink
rename singularPoints.m to findSingularPoints.m
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianDepriester committed Feb 5, 2021
1 parent b8d745f commit ad0b481
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion @gmshGeo/private/computeSegments.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
%
% See also gmshGeo, singularPoints

sp=singularPoints(grains);
sp=findSingularPoints(grains);
sp_all=vertcat(sp{:}); % Store all singular points in a single array

ng=length(grains);
Expand Down
2 changes: 1 addition & 1 deletion cond_smooth.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
% therefore it accepts the same input arguments.
%
% See also grain2d/smooth singularPoints.
sp = singularPoints(grains);
sp = findSingularPoints(grains);
sp = vertcat(sp{:});
V_old=grains.boundary.V;
grains=smooth(grains,varargin{:});
Expand Down
2 changes: 1 addition & 1 deletion singularPoints.m → findSingularPoints.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function sp = singularPoints(grains)
function sp = findSingularPoints(grains)
%%SINGULARPOINTS List of singular points in the grains
%
% SINGULARPOINTS(grains,tol) returns an array of indices of all singular
Expand Down

0 comments on commit ad0b481

Please sign in to comment.