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 similar CombineGeometry that accepts more than Geometry1 and Geometry2 shapes.
Anyone knows an object that makes such a behaviour?
I need a way to combine multiple EllipseGeometry to make a union between them,
Share
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.