Esempio n. 1
0
 ///
 ///	 <summary> * add - adds a complete transfer function to the vector
 ///	 *  </summary>
 ///	 * <param name="tf"> the given transfer function to add </param>
 ///
 public virtual void add(JDFTransferFunction tf)
 {
     m_numList.AddRange(tf.copyNumList());
 }
Esempio n. 2
0
 ///
 ///	 <summary> * copy constructor<br>
 ///	 * constructs a number list with the given transfer function
 ///	 *  </summary>
 ///	 * <param name="tf"> the given number list
 ///	 *  </param>
 ///	 * <exception cref="FormatException"> - if the String has not a valid format </exception>
 ///
 public JDFTransferFunction(JDFTransferFunction tf)
     : base(tf)
 {
 }