Method |
Description |
---|
AcDbExtents::AcDbExtents () |
Default constructor. This is typically used to initialize an AcDbExtents object prior to calling getGeomExtents(). It sets the minPoint to a very big value (10 to the 20th power) and the maxPoint to a very small value (minus 10 to the 20th power). Note that at this stage the object is in an invalid state, since its minPoint is bigger than its maxPoint. |
AcDbExtents::AcDbExtents (AcDbExtents&) |
Copy constructor. This initializes the newly constructed object to have the same minPoint and maxPoint as the object passed to it. |
AcDbExtents::AcDbExtents (AcGePoint3d&, AcGePoint3d&) |
Construct a new object. Initialize minPoint to min and maxPoint to max if each of the X, Y, and Z values of min are <= the corresponding values of max. If not, this behaves like the default constructor. |