Beispiel #1
0
 /// <summary>Constructs an Interval using the supplied parameters.</summary>
 /// <remarks>Constructs an Interval using the supplied parameters.</remarks>
 /// <TBD></TBD>
 /// <param name="centre">the centre bound</param>
 /// <param name="width">the width as a Diff object</param>
 /// <returns>the constructed interval</returns>
 public static Interval <T> CreateCentreWidth <T>(T centre, Diff <T> width)
 {
     return(IntervalFactory.CreateCentreWidth(centre, width, null));
 }