This is specific to mirroring the circle across vertical axis.
Although I believed the solution to be [change direction] this is not enough. The problem being the start point of the shape. In order for a correctly mirrored effect the start location must be 180 degrees out of phase. Currently there is no way to define a global offset for a shape (fine/coarse is relative to other fixtures), but it is possible in the Shapes definition in SG.DAT.
This is the code for the standard Circle shape using SIN pattern:
Code: Select all
SHAPE "Circle 1" "SIN"
5 40 64 0 0 1 0 0
6 40 64 0 0 1 90 0
SEND
and this is the code for reversed Circle,
Code: Select all
SHAPE "Circle Rev" "SIN"
5 40 64 0 0 1 180 0
6 40 64 0 0 1 90 0
SEND
where the pan has been put 180 degrees out of phase. Obviously it is conceivable you might want the tilt to have the offset rather than the pan.
Note that edits to the shape data can have strange effects on memories containing them. You might have to re-record.
HTH