/// /// <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()); }
/// /// <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) { }