Mirror image of geometric figures

Hello
Is it possible to make mirror image of geometric figures or svgPath ?
Best regards
Tadeusz

It’s possible, but it doesn’t seem that we make it easy for you. We’ll investigate.

Thank for your response.

If you want to flip a Shape’s Geometry horizontally:

    var geo = someShape.geometry.copy();
    geo.scale(-1, 1);
    geo.normalize();
    someShape.geometry = geo;

For flipping vertically, call Geometry.scale(1, -1).

If you are executing this upon some user command, remember to wrap all of your Diagram or Model modifying code within a transaction.