gg/elipse.go
2023-10-23 15:47:27 +03:00

13 lines
232 B
Go

package gg
// The structure represents elipses.
type Elipse struct {
// In transform S.X and S.Y represent
// coefficents for the corresponding axises.
Transform
}
func (e Elipse) ContainsPoint(p Point) bool {
return true
}