clean code fixes

This commit is contained in:
Miha Kralj
2024-10-06 17:16:47 -07:00
parent bcac34bf09
commit b7b5a4a1bf
52 changed files with 787 additions and 643 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ public class Convolution : AbstractBase
{
private readonly double[] _kernel;
private readonly int _kernelSize;
private CircularBuffer _buffer;
private double[] _normalizedKernel;
private readonly CircularBuffer _buffer;
private readonly double[] _normalizedKernel;
public Convolution(double[] kernel)
{