Home | History | Annotate | Download | only in image

Lines Matching defs:String

17 // String returns a string representation of p like "(3,4)".
18 func (p Point) String() string {
89 // String returns a string representation of r like "(3,4)-(6,5)".
90 func (r Rectangle) String() string {
91 return r.Min.String() + "-" + r.Max.String()