mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-26 04:12:34 +00:00
wip: Search & replace RXingResultPoint with Point
Build fails because the OneDReader proc macro expects that a RXingResultPoint type exists.
This commit is contained in:
@@ -150,8 +150,8 @@ impl OneDReader for ITFReader {
|
||||
&resultString,
|
||||
Vec::new(), // no natural byte representation for these barcodes
|
||||
vec![
|
||||
RXingResultPoint::new(startRange[1] as f32, rowNumber as f32),
|
||||
RXingResultPoint::new(endRange[0] as f32, rowNumber as f32),
|
||||
Point::new(startRange[1] as f32, rowNumber as f32),
|
||||
Point::new(endRange[0] as f32, rowNumber as f32),
|
||||
],
|
||||
BarcodeFormat::ITF,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user