ggorman/GeometryModel

Add member function for calculating the bounding box of the domain

Closed this issue · 3 comments

should look something like:

void bounding_box(double *bbox);

where

double bbox[] = {min_x, max_x, min_y, max_y, min_z, max_z};

https://www.opencascade.com/doc/occt-6.9.0/refman/html/class_bnd___box.html

OpenCascade provides a class for bounding boxes. Should it return a Bnd_Box object or the list of values?

Provide a member for both.

Done in PR #13