38 lines
512 B
Go
38 lines
512 B
Go
package structs
|
|
|
|
import "math"
|
|
|
|
type Shape interface {
|
|
Area() float64
|
|
}
|
|
|
|
type Rectangle struct {
|
|
Width float64
|
|
Height float64
|
|
}
|
|
|
|
type Circle struct {
|
|
Radius float64
|
|
}
|
|
|
|
type Triangle struct {
|
|
Base float64
|
|
Height float64
|
|
}
|
|
|
|
func Perimiter(r Rectangle) float64 {
|
|
return 2 * (r.Width + r.Height)
|
|
}
|
|
|
|
func (c Circle) Area() float64 {
|
|
return math.Pi * c.Radius * c.Radius
|
|
}
|
|
|
|
func (r Rectangle) Area() float64 {
|
|
return r.Width * r.Height
|
|
}
|
|
|
|
func (t Triangle) Area() float64 {
|
|
return t.Base * t.Height / 2
|
|
}
|