Is this Minkowski Sum result correct?
I expected a filled shape as it happens when the two polygons don't overlap (longer translation vector).
Full discussion here: https://github.com/AngusJohnson/Clipper2/discussions/417
EDIT: Result of the same data with a longer vector:



What you get is the Minkowski sum of the border of a non-closed regular pentagon and a horizontal line segment (you haven't specified to your software that the polygon was closed : you have given it vertices ABCDE instead of ABCDEA).
The longer the horizontal segment, the larger the "crab's claws" aspect : when the horizontal line segment reaches a certain length (here above $L\approx 1.2$ : see Fig. 2), the "crab claws" overlap, eventualy filling the space between them when $L$ is large enough (Fig. 3).
Instead of generating "flat" surfaces, I have generated it by plotting many instances of sums of a point in the first shape and a point in the second shape.
Fig. 1 : Case of a segment with length $L=0.2$.
Fig. 2 : Case of a segment with length $L=1.2$.
Fig. 3 : Case of a segment with length $L=2.2$.
Matlab program having generated these figures :