Hello. I have 2 EllipseShape with blue color, how i can draw new poly with darkblue color - intersect of this ellipses.
PointShape ShapePoint1 = new PointShape(value.lot, value.lat);
EllipseShape EllipseShape1 = new EllipseShape(ShapePoint1, (double)5, GeographyUnit.DecimalDegree, DistanceUnit.NauticalMile);
PointShape ShapePoint2 = new PointShape(value2.lot, value2.lat);
EllipseShape EllipseShape2 = new EllipseShape(ShapePoint2, (double)5, GeographyUnit.DecimalDegree, DistanceUnit.NauticalMile);
if (EllipseShape1.Intersects( EllipseShape2 )){
// ??????
}
How create new shape with figure intersect of this circles ?
Thx.