2024-09-11 06:55:19 +00:00
|
|
|
package shapes
|
|
|
|
|
2024-09-11 06:58:04 +00:00
|
|
|
type Rectangle struct {
|
|
|
|
Width float64
|
|
|
|
Height float64
|
2024-09-11 06:55:19 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 06:58:04 +00:00
|
|
|
func Perimeter(r Rectangle) float64 {
|
|
|
|
return 2 * (r.Width + r.Height)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Area(r Rectangle) float64 {
|
|
|
|
return r.Width * r.Height
|
2024-09-11 06:55:19 +00:00
|
|
|
}
|