/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="LineObj"/> object from which to copy</param> public LineObj( LineObj rhs ) : base( rhs ) { _line = new LineBase( rhs._line ); }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="LineObj"/> object from which to copy</param> public LineObj(LineObj rhs) : base(rhs) { _line = new LineBase(rhs._line); }