@@ -74,6 +74,15 @@ public void SetWindow(double[] newWindow)
7474 Array . Copy ( newWindow , 0 , settings . Window , offset , newWindow . Length ) ;
7575 }
7676
77+ [ Obsolete ( "use the Add() method" , true ) ]
78+ public void AddExtend ( float [ ] values ) { }
79+
80+ [ Obsolete ( "use the Add() method" , true ) ]
81+ public void AddCircular ( float [ ] values ) { }
82+
83+ [ Obsolete ( "use the Add() method" , true ) ]
84+ public void AddScroll ( float [ ] values ) { }
85+
7786 public void Add ( double [ ] audio , bool process = true )
7887 {
7988 newAudio . AddRange ( audio ) ;
@@ -122,6 +131,9 @@ public double[][] Process()
122131 public Bitmap GetBitmap ( double intensity = 1 , bool dB = false , bool roll = false ) =>
123132 _GetBitmap ( ffts , cmap , intensity , dB , roll , NextColumnIndex ) ;
124133
134+ [ Obsolete ( "use SaveImage()" , true ) ]
135+ public void SaveBitmap ( Bitmap bmp , string fileName ) { }
136+
125137 public void SaveImage ( string fileName , double intensity = 1 , bool dB = false , bool roll = false )
126138 {
127139 string extension = System . IO . Path . GetExtension ( fileName ) . ToLower ( ) ;
0 commit comments