2023-10-23 15:45:18 +03:00
|
|
|
package gg
|
2023-06-03 11:25:19 +03:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|