<?xml version="1.0"?>
<doc>
<assembly>
<name>zxing</name>
</assembly>
<members>
<member name="T:ZXing.QrCode.Internal.AlignmentPattern">
<summary> <p>Encapsulates an alignment pattern, which are the smaller square patterns found in
all but the simplest QR Codes.</p>
</summary>
<author> Sean Owen
</author>
<author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source
</author>
</member>
<member name="T:ZXing.ResultPoint">
<summary>
Encapsulates a point of interest in an image containing a barcode. Typically, this
would be the location of a finder pattern or the corner of the barcode, for example.
</summary>
<author>Sean Owen</author>
<author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source</author>
</member>
<member name="M:ZXing.ResultPoint.#ctor">
<summary>
Initializes a new instance of the <see cref="T:ZXing.ResultPoint"/> class.
</summary>
</member>
<member name="M:ZXing.ResultPoint.#ctor(System.Single,System.Single)">
<summary>
Initializes a new instance of the <see cref="T:ZXing.ResultPoint"/> class.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:ZXing.ResultPoint.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
</summary>
<param name="other">The <see cref="T:System.Object"/> to compare with this instance.</param>
<returns>
<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:ZXing.ResultPoint.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
<returns>
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
</returns>
</member>
<member name="M:ZXing.ResultPoint.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="M:ZXing.ResultPoint.orderBestPatterns(ZXing.ResultPoint[])">
<summary>
Orders an array of three ResultPoints in an order [A,B,C] such that AB < AC and
BC < AC and the angle between BC and BA is less than 180 degrees.
</summary>
</member>
<member name="M:ZXing.ResultPoint.distance(ZXing.ResultPoint,ZXing.ResultPoint)">
<returns>
distance between two points
</returns>
</member>
<member name="M:ZXing.ResultPoint.crossProductZ(ZXing.ResultPoint,ZXing.ResultPoint,ZXing.ResultPoint)">
<summary>
Returns the z component of the cross product between vectors BC and BA.
</summary>
</member>
<member name="P:ZXing.ResultPoint.X">
<summary>
Gets the X.
</summary>
</member>
<member name="P:ZXing.ResultPoint.Y">
<summary>
Gets the Y.
</summary>
</member>
<member name="M:ZXing.QrCode.Internal.AlignmentPattern.aboutEquals(System.Single,System.Single,System.Single)">
<summary> <p>Determines if this alignment pattern "about equals" an alignment pattern at the stated
position and size -- meaning, it is at nearly the same center with nearly the same size.</p>
</summary>
</member>
<member name="M:ZXing.QrCode.Internal.AlignmentPattern.combineEstimate(System.Single,System.Single,System.Single)">
<summary>
Combines this object's current estimate of a finder pattern position and module size
with a new estimate. It returns a new {@code FinderPattern} containing an average of the two.
</summary>
<param name="i">The i.</param>
<param name="j">The j.</param>
<param name="newModuleSize">New size of the module.</param>
<returns></returns>
</member>
<member name="T:ZXing.PDF417.Internal.Compaction">
<summary>
PDF417 compaction mode
</summary>
</member>
<member name="F:ZXing.PDF417.Internal.Compaction.AUTO">
<summary>
</summary>
</member>
<member name="F:ZXing.PDF417.Internal.Compaction.TEXT">
<summary>
</summary>
</member>
<member name="F:ZXing.PDF417.Internal.Compaction.BYTE">
<summary>
</summary>
</member>
<member name="F:ZXing.PDF417.Internal.Compaction.NUMERIC">
<summary>
</summary>
</member>
<member name="T:ZXing.PDF417.Internal.DetectionResultColumn">
<summary>
Represents a Column in the Detection Result
</summary>
<author>Guenther Grau</author>
</member>
<member name="F:ZXing.PDF417.Internal.DetectionResultColumn.MAX_NEARBY_DISTANCE">
<summary>
The maximum distance to search in the codeword array in both the positive and negative directions
</summary>
</member>
<member name="M:ZXing.PDF417.Internal.DetectionResultColumn.#ctor(ZXing.PDF417.Internal.BoundingBox)">
<summary>
Initializes a new instance of the <see cref="T:ZXing.PDF417.Internal.DetectionResultColumn"/> class.
</summary>
<param name="box">The Bounding Box around the column (in the BitMatrix)</param>
</member>
<member name="M:ZXing.PDF417.Internal.DetectionResultColumn.IndexForRow(System.Int32)">
<summary>
Converts the Image's Row to the index in the Codewords array
</summary>
<returns>The Codeword Index.</returns>
<param name="imageRow">Image row.</param>
</member>
<member name="M:ZXing.PDF417.Internal.DetectionResultColumn.RowForIndex(System.Int32)">
<summary>
Converts the Codeword array index into a Row in the Image (BitMatrix)
</summary>
<returns>The Image Row.</returns>
<param name="codewordIndex">Codeword index.</param>
</member>
<member name="M:ZXing.PDF417.Internal.DetectionResultColumn.getCodeword(System.Int32)">
<summary>
Gets the codeword for a given row
</summary>
<returns>The codeword.</returns>
<param name="imageRow">Image row.</param>
</member>
<member name="M:ZXing.PDF417.Internal.DetectionResultColumn.getCodewordNearby(System.Int32)">
<summary>
Gets the codeword closest to the specified row in the image
</summary>
<param name="imageRow">Image row.</param>
</member>
<member name="M:ZXing.PDF417.Internal.DetectionResultColumn.setCodeword(System.Int32,ZXing.PDF417.Internal.Codeword)">
<summary>
Sets the codeword for an image row
</summary>
<param name="imageRow">Image row.</param>