Skip to content

H Mirror and V Mirror do not Mirror Camera image under the Camera Section #18

@SynchronisticSavage

Description

@SynchronisticSavage

UPDATE:
2022-05-26:

Was able to get it working by editing quad.cpp and copying: "
if (camHFlip || camVFlip)
{
glPushMatrix();
if(camHFlip && !camVFlip)
{
ofTranslate(camWidthcamMultX,0);
glScalef(-1,1,1);
}
else if(camVFlip && !camHFlip)
{
ofTranslate(0,camHeight
camMultY);
glScalef(1,-1,1);
}
else
{
ofTranslate(camWidthcamMultX,camHeightcamMultY);
glScalef(-1,-1,1);
}
}
"
and pasting it at the top of the 'camera stuff' section.
just under:
"
if (camAvailable && camBg && cams[camNumber]->getWidth() > 0)
{
"

can this be updated and merged with the git?

Tested on Xubuntu 16.04 with OpenFrameworks 0.9.4
contact me if more info is required for troubleshooting.
big ups to the Open Source Community, thanks for the awesome ever evolving cool software 👍

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions