Beispiel #1
0
 protected void AdjustBounding(Bounding bound, bool toExternal)
 {
     if (toExternal)
     {
         bound.Shift(ShiftP);
     }
     else
     {
         bound.Shift(ShiftP.Invert());
     }
 }
Beispiel #2
0
 public override List <string> ToRowStrings(Bounding bounds = null)
 {
     if (bounds == null)
     {
         bounds = Bounding;
     }
     return(Nifty.AddRuler(arr.ToRowStrings(Bounding.Shift(-shift)), bounds));
 }