Code/Dependencies/DotNetGraph/Core/DotEdgeArrowType.cs
namespace Nodebox.Dependencies.DotNetGraph.Core {
    public enum DotEdgeArrowType {
        Normal,
        Inv,
        Dot,
        InvDot,
        ODot,
        InvODot,
        None,
        Tee,
        Empty,
        InvEmpty,
        Diamond,
        ODiamond,
        EDiamond,
        Crow,
        Box,
        OBox,
        Open,
        HalfOpen,
        Vee
    }
}