Esempio n. 1
0
 /// <summary>
 /// The PointPair4 copy constructor.
 /// </summary>
 /// <param name="rhs">The basis for the copy.</param>
 public PointPair4(PointPair4 rhs)
     : base(rhs)
 {
     T = rhs.T;
 }
Esempio n. 2
0
 /// <summary>
 /// The PointPair4 copy constructor.
 /// </summary>
 /// <param name="rhs">The basis for the copy.</param>
 public PointPair4(PointPair4 rhs) : base(rhs)
 {
     T = rhs.T;
 }
Esempio n. 3
0
 /// <summary>
 /// The PointPair4 copy constructor.
 /// </summary>
 /// <param name="rhs">The basis for the copy.</param>
 public PointPair4(PointPair4 rhs) : base((IPointPair)rhs)
 {
     this.T = rhs.T;
 }