Skip to content
Snippets Groups Projects
Commit bb1aaaca authored by Eric Wait's avatar Eric Wait
Browse files

Making the LongDistance param optional in GraphEditSetEdge

parent ef2ee940
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,10 @@
function GraphEditSetEdge(trackID, nextTrackID, time, bLongDistance)
global GraphEdits CachedCostMatrix CellTracks
if (~exist('bLongDistance','var'))
bLongDistance = 0;
end
if(bLongDistance)
track = CellTracks(trackID);
if(isempty(track.hulls)) %check for valid track
......
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