ZXing.PDF417.Internal.BoundingBox.BoundingBox C# (CSharp) Method

BoundingBox() private method

Initializes a new instance of the ZXing.PDF417.Internal.BoundingBox class. Will throw an exception if the corner points don't match up correctly
private BoundingBox ( BitMatrix image, ResultPoint topLeft, ResultPoint bottomLeft, ResultPoint topRight, ResultPoint bottomRight ) : System
image ZXing.Common.BitMatrix Image.
topLeft ResultPoint Top left.
bottomLeft ResultPoint Bottom left.
topRight ResultPoint Top right.
bottomRight ResultPoint Bottom right.
return System
      private BoundingBox(BitMatrix image,
                          ResultPoint topLeft,
                          ResultPoint bottomLeft,
                          ResultPoint topRight,
                          ResultPoint bottomRight)
      {
         this.image = image;
         this.TopLeft = topLeft;
         this.TopRight = topRight;
         this.BottomLeft = bottomLeft;
         this.BottomRight = bottomRight;
         calculateMinMaxValues();
      }