Skip to content

Commit

Permalink
Removed unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ncguilbeault committed Jan 20, 2025
1 parent 13dec06 commit 614de1c
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,6 @@ public class GridParameters
private double _y1 = 1;
private int _ysteps = 100;

private string _x0String;
private string _x1String;
private string _xstepsString;

private string _y0String;
private string _y1String;
private string _ystepsString;

/// <summary>
/// Gets or sets the lower bound of the X axis.
/// </summary>
Expand All @@ -47,8 +39,6 @@ public double X0
set
{
_x0 = value;
_x0String = double.IsNaN(_x0) ? "None" : _x0.ToString();

}
}

Expand All @@ -66,7 +56,6 @@ public double X1
set
{
_x1 = value;
_x1String = double.IsNaN(_x1) ? "None" : _x1.ToString();
}
}

Expand All @@ -84,7 +73,6 @@ public int XSteps
set
{
_xsteps = value >= 0 ? value : _xsteps;
_xstepsString = _xsteps.ToString();
}
}

Expand All @@ -102,7 +90,6 @@ public double Y0
set
{
_y0 = value;
_y0String = double.IsNaN(_y0) ? "None" : _y0.ToString();
}
}

Expand All @@ -120,7 +107,6 @@ public double Y1
set
{
_y1 = value;
_y1String = double.IsNaN(_y1) ? "None" : _y1.ToString();
}
}

Expand All @@ -138,7 +124,6 @@ public int YSteps
set
{
_ysteps = value;
_ystepsString = _ysteps.ToString();
}
}

Expand Down

0 comments on commit 614de1c

Please sign in to comment.