House Cleaning
This commit is contained in:
@ -23,7 +23,7 @@ public class Location : Properties.ILocation, IEquatable<Location>
|
||||
_ = Stateless.Methods.Location.Check(bottom, left, right, top, zCount: 1, throwException: true);
|
||||
}
|
||||
|
||||
public Location(double confidence, int height, Location location, int locationDigits, int locationFactor, int width, int zCount) :
|
||||
public Location(double confidence, int height, Location location, int width, int zCount) :
|
||||
this(
|
||||
location.Bottom,
|
||||
confidence,
|
||||
@ -32,7 +32,7 @@ public class Location : Properties.ILocation, IEquatable<Location>
|
||||
location.Top) =>
|
||||
Stateless.Methods.Location.Check(Bottom, height, Left, Right, Top, width, zCount, throwException: true);
|
||||
|
||||
public Location(int bottom, double confidence, int height, int left, int locationDigits, int locationFactor, int right, int top, int width, int zCount) :
|
||||
public Location(int bottom, double confidence, int height, int left, int right, int top, int width, int zCount) :
|
||||
this(
|
||||
bottom,
|
||||
confidence,
|
||||
@ -41,7 +41,7 @@ public class Location : Properties.ILocation, IEquatable<Location>
|
||||
top) =>
|
||||
Stateless.Methods.Location.Check(Bottom, height, Left, Right, Top, width, zCount, throwException: true);
|
||||
|
||||
public Location(int height, Location location, int locationDigits, int locationFactor, int width, int zCount) :
|
||||
public Location(int height, Location location, int width, int zCount) :
|
||||
this(
|
||||
location.Bottom,
|
||||
location.Confidence,
|
||||
@ -50,7 +50,7 @@ public class Location : Properties.ILocation, IEquatable<Location>
|
||||
location.Top) =>
|
||||
Stateless.Methods.Location.Check(Bottom, height, Left, Right, Top, width, zCount, throwException: true);
|
||||
|
||||
public Location(double confidence, int factor, int height, Location location, int locationDigits, int locationFactor, int width, int zCount)
|
||||
public Location(double confidence, int factor, int height, Location location, int width, int zCount)
|
||||
{
|
||||
int x = (location.Right - location.Left) / factor;
|
||||
int y = (location.Bottom - location.Top) / factor;
|
||||
|
Reference in New Issue
Block a user