Home | History | Annotate | Download | only in progs

Lines Matching defs:Rect

17 	Rect()
25 r := image.Rect(0, 0, 640, 480)
34 m := image.NewRGBA(image.Rect(0, 0, 640, 480))
44 func Rect() {
45 dst := image.NewRGBA(image.Rect(0, 0, 640, 480))
46 sr := image.Rect(0, 0, 200, 200)
50 // RECT OMIT
57 dst := image.NewRGBA(image.Rect(0, 0, 640, 480))
58 sr := image.Rect(0, 0, 200, 200)
75 dirtyRect := b.Intersect(image.Rect(b.Min.X, b.Max.Y-20, b.Max.X, b.Max.Y))
82 src := image.NewRGBA(image.Rect(0, 0, 640, 480))
83 dst := image.NewRGBA(image.Rect(0, 0, 640, 480))
100 return image.NewRGBA(image.Rect(0, 0, 640, 480))
104 return image.Rect(0, 0, 32, 32)
109 dst := image.NewRGBA(image.Rect(0, 0, 640, 480))
131 return image.Rect(c.p.X-c.r, c.p.Y-c.r, c.p.X+c.r, c.p.Y+c.r)