public struct Bounds

Bounds struct holding the bounds (min_x, max_x, min_y, max_y)

public double min_x

Lower x limit

public double max_x

Upper x limit

public double min_y

Lower y limit

public double max_y

Upper y limit

public this(
    double my_min_x, 
    double my_max_x, 
    double my_min_y, 
    double my_max_y)

Constructor taking the x and y limits

public this(string value)

Constructor taking the x and y limits separated by a comma

Variables

min_x
double

Lower x limit

max_x
double

Upper x limit

min_y
double

Lower y limit

max_y
double

Upper y limit

Functions

this

Constructor taking the x and y limits

this

Constructor taking the x and y limits separated by a comma