Example #1
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="ArrowObj"/> object from which to copy</param>
 public ArrowObj( ArrowObj rhs )
     : base(rhs)
 {
     _size = rhs.Size;
     _isArrowHead = rhs.IsArrowHead;
 }
Example #2
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="ArrowObj"/> object from which to copy</param>
 public ArrowObj(ArrowObj rhs)
     : base(rhs)
 {
     _size        = rhs.Size;
     _isArrowHead = rhs.IsArrowHead;
 }