15 lines
407 B
C#
15 lines
407 B
C#
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.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);
|
|
}
|
|
}
|