13 lines
232 B
Go
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
|
|
}
|
|
|