Update EdgeBase.cs to support new ReversePath property.

Added support for reversing the geometry.  This is required for animating shapes along a path where the direction needs to be reversed without using the Storyboard.AutoReverse property.
This commit is contained in:
bleibold 2015-08-28 10:59:46 -06:00
Родитель 4f7dec6de8
Коммит deac39008f
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -67,5 +67,9 @@ namespace GraphX.PCL.Common.Models
/// </summary>
public double Weight { get; set; }
/// <summary>
/// Reverse the calculated routing path points.
/// </summary>
public bool ReversePath { get; set; }
}
}