Index: trunk/src_plugins/export_xy/xy.c =================================================================== --- trunk/src_plugins/export_xy/xy.c (revision 35917) +++ trunk/src_plugins/export_xy/xy.c (revision 35918) @@ -571,6 +571,11 @@ rnd_append_printf(s, "%g", ctx->front ? ctx->theta : -ctx->theta); return 0; } + if (strncmp(*input, "side-rot180%", 12) == 0) { + *input += 12; + rnd_append_printf(s, "%g", ctx->front ? ctx->theta : -ctx->theta + 180); + return 0; + } if (strncmp(*input, "side-negrot%", 12) == 0) { *input += 12; rnd_append_printf(s, "%g", ctx->front ? -ctx->theta : ctx->theta);