Skip to content

Commit

Permalink
Merge pull request #25 from CHLNDDEV/brianfix
Browse files Browse the repository at this point in the history
Fix from brjyoce
  • Loading branch information
WPringle authored Aug 17, 2019
2 parents 70dd970 + 1ba0510 commit fc3b6e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion @msh/msh.m
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,9 @@ function write(obj,fname,type)
it = 0;
CFL = 999;
if ~isempty(obj.pfix)
[pf(:,1),pf(:,2)] = m_ll2xy(obj.pfix(:,1),obj.pfix(:,2));
[pf(:,1),pf(:,2)] = m_ll2xy(obj.pfix(:,1),obj.pfix(:,2));
else
pf = [];
end
con = 9;
badnump = 1e10;
Expand Down

0 comments on commit fc3b6e3

Please sign in to comment.