mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-01 21:36:37 +00:00
22 lines
491 B
Python
22 lines
491 B
Python
|
#!/usr/bin/env python3
|
||
|
#
|
||
|
# OperatorFlipHorizontal.py
|
||
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
||
|
#
|
||
|
|
||
|
from Operator import Operator
|
||
|
|
||
|
class OperatorFlipHorizontal(Operator):
|
||
|
name = "Flip horizontally"
|
||
|
|
||
|
#
|
||
|
# apply(self, region)
|
||
|
def apply(self, region):
|
||
|
region.reverse(); return region;
|
||
|
|
||
|
# __init__(self, *args): initialisation method
|
||
|
def __init__(self, *args):
|
||
|
pass
|
||
|
|
||
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|