Exemplo n.º 1
0
    public List <Vector3> GetSectionFrom2Corssing(long start, long end)
    {
        SpeedRoadCrossing s      = GetCrossing(start);
        bool             forward = true;
        SpeedRoadSection sec     = s.GetTargetSection(end, ref forward);

        Assert.IsNotNull(sec);
        var path = sec.GetPath(forward);

        return(path);
    }