when polygon1 and polygon2 contains the same Coordinates (10,10) (20,10) (20,20) (10,20)
Clipper c;
c.AddPaths(polygon1,ptSubject);
c.AddPaths(polygon2,ptClip);
c.Execute(ctUnion,polyUnion,pftNonZero,pftNonZero);
polygon1 and polygon2 are Closed loops How ptSubject and ptClip will perform?.