Merge pull request #71 from huysentruitw/patch-1

Swap vertical/horizontal variables in row/column calculation
This commit is contained in:
Florian 2022-02-09 09:33:04 +01:00 committed by GitHub
commit abf40d274d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -10,19 +10,19 @@ type dmCodeSize struct {
}
func (s *dmCodeSize) RegionRows() int {
return (s.Rows - (s.RegionCountHorizontal * 2)) / s.RegionCountHorizontal
return (s.Rows - (s.RegionCountVertical * 2)) / s.RegionCountVertical
}
func (s *dmCodeSize) RegionColumns() int {
return (s.Columns - (s.RegionCountVertical * 2)) / s.RegionCountVertical
return (s.Columns - (s.RegionCountHorizontal * 2)) / s.RegionCountHorizontal
}
func (s *dmCodeSize) MatrixRows() int {
return s.RegionRows() * s.RegionCountHorizontal
return s.RegionRows() * s.RegionCountVertical
}
func (s *dmCodeSize) MatrixColumns() int {
return s.RegionColumns() * s.RegionCountVertical
return s.RegionColumns() * s.RegionCountHorizontal
}
func (s *dmCodeSize) DataCodewords() int {