コード例 #1
0
		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);
		}
コード例 #2
0
 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);
 }