type rsc.io/qr/coding.Pixel
21 uses
rsc.io/qr/coding (current package)
qr.go#L220: type Pixel uint32
qr.go#L223: Black Pixel = 1 << iota
qr.go#L227: func (p Pixel) Offset() uint {
qr.go#L231: func OffsetPixel(o uint) Pixel {
qr.go#L232: return Pixel(o << 6)
qr.go#L235: func (r PixelRole) Pixel() Pixel {
qr.go#L236: return Pixel(r << 2)
qr.go#L239: func (p Pixel) Role() PixelRole {
qr.go#L243: func (p Pixel) String() string {
qr.go#L357: Pixel [][]Pixel // pixel map
qr.go#L526: func grid(siz int) [][]Pixel {
qr.go#L527: m := make([][]Pixel, siz)
qr.go#L528: pix := make([]Pixel, siz*siz)
qr.go#L668: data := make([]Pixel, dataBits)
qr.go#L672: check := make([]Pixel, checkBits)
qr.go#L678: dataList := make([][]Pixel, nblock)
qr.go#L679: checkList := make([][]Pixel, nblock)
qr.go#L695: bits := make([]Pixel, dataBits+checkBits)
qr.go#L722: rem := make([]Pixel, 7)
qr.go#L767: func posBox(m [][]Pixel, x, y int) {
qr.go#L803: func alignBox(m [][]Pixel, x, y int) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |