Lines Matching defs:Rectangle
88 type Rectangle struct { struct
89 Min, Max Point
93 func (r Rectangle) String() string {
98 func (r Rectangle) Dx() int {
103 func (r Rectangle) Dy() int {
108 func (r Rectangle) Size() Point {
116 func (r Rectangle) Add(p Point) Rectangle {
124 func (r Rectangle) Sub(p Point) Rectangle {
134 func (r Rectangle) Inset(n int) Rectangle {
154 func (r Rectangle) Intersect(s Rectangle) Rectangle {
178 func (r Rectangle) Union(s Rectangle) Rectangle {
201 func (r Rectangle) Empty() bool {
207 func (r Rectangle) Eq(s Rectangle) bool {
212 func (r Rectangle) Overlaps(s Rectangle) bool {
219 func (r Rectangle) In(s Rectangle) bool {
231 func (r Rectangle) Canon() Rectangle {
242 func (r Rectangle) At(x, y int) color.Color {
269 // Deprecated: Use a literal [image.Rectangle] instead.