17 lines
346 B
C#
17 lines
346 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Sai.Toolkit.Core.LandXMLData
|
|||
|
|
{
|
|||
|
|
public interface IGenerationRange
|
|||
|
|
{
|
|||
|
|
double EndStation { get; set; }
|
|||
|
|
|
|||
|
|
double GenerationEndStation { get; set; }
|
|||
|
|
double GenerationStartStation { get; set; }
|
|||
|
|
|
|||
|
|
double StartStation { get; set; }
|
|||
|
|
|
|||
|
|
Tuple<double, double> GetGenerationScopeIntersection(IGenerationRange parent);
|
|||
|
|
}
|
|||
|
|
}
|