gg/mx/elipse.go

14 lines
236 B
Go
Raw Normal View History

2024-05-28 11:24:12 +03:00
package mx
2023-06-03 11:25:19 +03:00
// The structure represents elipses.
2024-05-28 11:24:12 +03:00
/*type Elipse struct {
2023-06-03 11:25:19 +03:00
// In transform S.X and S.Y represent
// coefficents for the corresponding axises.
Transform
}
func (e Elipse) ContainsPoint(p Point) bool {
return true
2024-05-28 11:24:12 +03:00
}*/
2023-06-03 11:25:19 +03:00