@@ -74,6 +74,15 @@ public void SetWindow(double[] newWindow)
74
74
Array . Copy ( newWindow , 0 , settings . Window , offset , newWindow . Length ) ;
75
75
}
76
76
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
+
77
86
public void Add ( double [ ] audio , bool process = true )
78
87
{
79
88
newAudio . AddRange ( audio ) ;
@@ -122,6 +131,9 @@ public double[][] Process()
122
131
public Bitmap GetBitmap ( double intensity = 1 , bool dB = false , bool roll = false ) =>
123
132
_GetBitmap ( ffts , cmap , intensity , dB , roll , NextColumnIndex ) ;
124
133
134
+ [ Obsolete ( "use SaveImage()" , true ) ]
135
+ public void SaveBitmap ( Bitmap bmp , string fileName ) { }
136
+
125
137
public void SaveImage ( string fileName , double intensity = 1 , bool dB = false , bool roll = false )
126
138
{
127
139
string extension = System . IO . Path . GetExtension ( fileName ) . ToLower ( ) ;
0 commit comments