image.RGBA64.Rect (field)

16 uses

	image (current package)
		image.go#L111: 	Rect Rectangle
		image.go#L116: func (p *RGBA) Bounds() Rectangle { return p.Rect }
		image.go#L123: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L141: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L152: 	return (y-p.Rect.Min.Y)*p.Stride + (x-p.Rect.Min.X)*4
		image.go#L156: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L169: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L181: 	if !(Point{x, y}.In(p.Rect)) {
		image.go#L195: 	r = r.Intersect(p.Rect)
		image.go#L206: 		Rect:   r,
		image.go#L212: 	if p.Rect.Empty() {
		image.go#L215: 	i0, i1 := 3, p.Rect.Dx()*4
		image.go#L216: 	for y := p.Rect.Min.Y; y < p.Rect.Max.Y; y++ {
		image.go#L233: 		Rect:   r,