///
 ///	 <summary> * Create a AudioAnalyser instance.</summary>
 /// * <param name="width">  The new width of the surface. </param>
 /// * <param name="height"> The new height of the surface. </param>
 ///
 public InstrumentPanel(int width, int height)
 {
     //Save current layout
     currentWidth  = width;
     currentHeight = height;
     audioAnalyser = new AudioAnalyser();
 }
Пример #2
0
		///
		///	 <summary> * Create a AudioAnalyser instance.</summary>
		/// * <param name="width">  The new width of the surface. </param>
		/// * <param name="height"> The new height of the surface. </param>
		///				
		public InstrumentPanel(int width, int height)
		{
			//Save current layout
			currentWidth=width;
			currentHeight=height;
			audioAnalyser = new AudioAnalyser();
		}
        // ******************************************************************** //
        // Constructor.
        // ******************************************************************** //

        ///
        ///	 <summary> * Create a AudioAnalyser instance.</summary>
        ///
        public InstrumentPanel()
        {
            audioAnalyser = new AudioAnalyser();
        }
Пример #4
0
		// ******************************************************************** //
		// Constructor.
		// ******************************************************************** //

		///
		///	 <summary> * Create a AudioAnalyser instance.</summary>
		///				
		public InstrumentPanel()
		{
			audioAnalyser = new AudioAnalyser();
		}