image.Gray16.Rect (field)

16 uses

	image (current package)
		image.go#L95: 	Rect Rectangle
		image.go#L100: func (p *RGBA) Bounds() Rectangle { return p.Rect }
		image.go#L107: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L125: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L136: 	return (y-p.Rect.Min.Y)*p.Stride + (x-p.Rect.Min.X)*4
		image.go#L140: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L153: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L165: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L179: 	r = r.Intersect(p.Rect)
		image.go#L190: 		Rect:   r,
		image.go#L196: 	if p.Rect.Empty() {
		image.go#L199: 	i0, i1 := 3, p.Rect.Dx()*4
		image.go#L200: 	for y := p.Rect.Min.Y; y < p.Rect.Max.Y; y++ {
		image.go#L217: 		Rect:   r,