/// <summary> /// 比较 /// </summary> /// <returns></returns> public bool Compare(Maper drv, Bound bnd) { return(this.min.Compare(drv, bnd.min) && this.max.Compare(drv, bnd.max)); }
public Bound Correct(Maper drv, Bound bnd) { return(new Bound(this.Correct(drv, bnd.min), this.Correct(drv, bnd.max))); }
public bool Contain(Maper drv, Bound bnd) { return(this.Contain(drv, bnd.min) && this.Contain(drv, bnd.max)); }