Bounds

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

Constructors

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

Constructor taking the x and y limits

this
this(string value)

Constructor taking the x and y limits separated by a comma

Members

Variables

max_x
double max_x;

Upper x limit

max_y
double max_y;

Upper y limit

min_x
double min_x;

Lower x limit

min_y
double min_y;

Lower y limit

Meta