Skip to content

Commit

Permalink
+ Small fix for showcase app
Browse files Browse the repository at this point in the history
  • Loading branch information
panthernet committed Aug 16, 2016
1 parent 58d6a9a commit 53009c7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Documents/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WIP 2.3.5
RELEASE 2.3.5
FEATURES HIGHLIGHT:
- Added new awesome vertex snapping feature on vertex drag. Many thanks to perturbare for this wonderful contibution! The feature is implemented around DragBehaviour class
and is represented in several new settings allowing the drag to be perform around some sort of virtual snap grid. Please read the comment for the DragBehaviour class for detailed info.
Expand Down
9 changes: 9 additions & 0 deletions Examples/ShowcaseApp.WPF/ExampleModels/OrthEr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,14 @@ public override void Compute(CancellationToken cancellationToken)

}
}

/// <summary>
/// Compute edge routing for single edge
/// </summary>
/// <param name="edge">Supplied edge data</param>
public override Point[] ComputeSingle(TEdge edge)
{
return null;
}
}
}

0 comments on commit 53009c7

Please sign in to comment.