BoundingBox.copy constructor

BoundingBox.copy(
  1. BoundingBox boundingBox
)

Implementation

BoundingBox.copy(BoundingBox boundingBox)
    : _image = boundingBox._image,
      _topLeft = boundingBox._topLeft,
      _bottomLeft = boundingBox._bottomLeft,
      _topRight = boundingBox._topRight,
      _bottomRight = boundingBox._bottomRight,
      _minX = boundingBox._minX,
      _maxX = boundingBox._maxX,
      _minY = boundingBox._minY,
      _maxY = boundingBox._maxY;