protected BaseRect(BaseRect other) { this.min = new Point(other.Min); AddMinListeners(this.min); this.max = new Point(other.Max); AddMaxListeners(this.max); this.ps = new ObservableList<Point>(); AddPsListListeners(this.ps); this.ps.AddRange(other.Ps); this.ls = new ObservableList<double?>(); AddLsListListeners(this.ls); this.ls.AddRange(other.Ls); this.lLs = new ObservableList<double>(); AddLLsListListeners(this.lLs); this.lLs.AddRange(other.LLs); }
protected BaseRect(BaseRect other) { this.min = new Point(other.Min); AddMinListeners(this.min); this.max = new Point(other.Max); AddMaxListeners(this.max); this.ps = new ObservableList <Point>(); AddPsListListeners(this.ps); this.ps.AddRange(other.Ps); this.ls = new ObservableList <double?>(); AddLsListListeners(this.ls); this.ls.AddRange(other.Ls); this.lLs = new ObservableList <double>(); AddLLsListListeners(this.lLs); this.lLs.AddRange(other.LLs); }