示例#1
0
        public LayoutPath CreateLayoutPath(string pathString)
        {
            var edgeSpecifications = PathSpecification.Parse(pathString).ToEdgeSpecifications();

            return(new LayoutPath(edgeSpecifications.Select(CreateLayoutEdge)));
        }
 protected virtual PathSpecification GetPathSpecification(string pathString)
 {
     return(PathSpecification.Parse(pathString));
 }