H returns the height of the rectangle.
()
| 407 | |
| 408 | // H returns the height of the rectangle. |
| 409 | func (r Rect) H() float64 { |
| 410 | return r.Y1 - r.Y0 |
| 411 | } |
| 412 | |
| 413 | // Area returns the area of the rectangle. |
| 414 | func (r Rect) Area() float64 { |
no outgoing calls