I need a way to combine multiple EllipseGeometry to make a union between them, but CombineGeometry class only can combine 2 Geometries. The ideal way is to have a class simi
EllipseGeometry is a Geometry too so you can combine like this:
EDIT To combine three or more EllipseGeometries you could use this mechanism
You can create a new class that is derived from Geometry and have a Geometry[] in it and implement methods using above mechanism.