Swap vertical/horizontal variables in row/column calculation
Currently has no impact as all code-sizes are square, but if support for rectangular DataMatrix would be added, then this would have been an issue.
(I might try to add that support, but I don't know Go 🙂)
This commit is contained in:
parent
6c824513ba
commit
196dd6e4c1
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue