CGAL::Bbox_2

#include <CGAL/Bbox_2.h>

Definition

An object b of the class Bbox_2 is a bounding box in the two-dimensional Euclidean plane 2. This class is not templated.

Creation

Bbox_2 b ( double x_min, double y_min, double x_max, double y_max);
introduces a bounding box b with lower left corner at (xmin, ymin) and with upper right corner at (xmax, ymax).

Operations

double b.xmin ()
double b.ymin ()
double b.xmax ()
double b.ymax ()

Bbox_2 b.operator+ ( c) returns a bounding box of b and c.

See Also

CGAL::Bbox_3
CGAL::do_overlap