Example #1
0
 protected BasePoint(BasePoint other)
 {
     this.x = other.X;
     this.y = new Point(other.Y);
     AddYListeners(this.y);
     this.ws = new ObservableList <double>();
     AddWsListListeners(this.ws);
     this.ws.AddRange(other.Ws);
 }
		protected BasePoint(BasePoint other)
		{
			this.x = other.X;
			this.y = new Point(other.Y);
			AddYListeners(this.y);
			this.ws = new ObservableList<double>();
			AddWsListListeners(this.ws);
			this.ws.AddRange(other.Ws);
		}