コード例 #1
0
		public virtual ImmutablePointBuilder Set(ImmutablePoint other)
		{
			SetX(other.X);
			SetY(other.Y);
			ClearWs();
			AddToWs(other.Ws);
			return this;
		}
コード例 #2
0
 public virtual ImmutablePointBuilder Set(ImmutablePoint other)
 {
     SetX(other.X);
     SetY(other.Y);
     ClearWs();
     AddToWs(other.Ws);
     return(this);
 }
コード例 #3
0
 public ImmutablePoint(ImmutablePoint other)
     : base(other)
 {
 }
コード例 #4
0
ファイル: ImmutablePoint.cs プロジェクト: pescuma/modelsharp
		public ImmutablePoint(ImmutablePoint other)
		: base(other)
		{
		}