Q3BoundingBox_Copy
You can use the Q3BoundingBox_Copy function to make a copy of a bounding box.
TQ3BoundingBox *Q3BoundingBox_Copy (
const TQ3BoundingBox *src,
TQ3BoundingBox *dest);
src
- A pointer to the bounding box to be copied.
dest
- On entry, a pointer to a buffer large enough to hold a bounding box. On exit, a pointer to a copy of the bounding box specified by the
src parameter.
DESCRIPTION
The Q3BoundingBox_Copy function returns, as its function result and in the dest parameter, a copy of the bounding box specified by the src parameter. Q3BoundingBox_Copy does not allocate any memory for the destination bounding box; the dest parameter must point to space allocated in the heap or on the stack before you call Q3BoundingBox_Copy.