image.Rectangle.Dy (method)

6 uses

	image (current package)
		geom.go#L52: 	w, h := r.Dx(), r.Dy()
		geom.go#L103: func (r Rectangle) Dy() int {
		geom.go#L142: 	if r.Dy() < 2*n {
		image.go#L67: 	totalLength := mul3NonNeg(bytesPerPixel, r.Dx(), r.Dy())
		ycbcr.go#L142: 	w, h = r.Dx(), r.Dy()

	image/jpeg
		writer.go#L577: 	if b.Dx() >= 1<<16 || b.Dy() >= 1<<16 {