aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/argaze/AreaOfInterest/AOIFeatures.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/argaze/AreaOfInterest/AOIFeatures.py b/src/argaze/AreaOfInterest/AOIFeatures.py
index 5637baa..77a92fd 100644
--- a/src/argaze/AreaOfInterest/AOIFeatures.py
+++ b/src/argaze/AreaOfInterest/AOIFeatures.py
@@ -357,6 +357,7 @@ class AOIScene():
delattr(self, key)
def __or__(self, other):
+ """Merge another scene using | operator."""
assert(other.dimension == self.__dimension)
@@ -366,6 +367,7 @@ class AOIScene():
return AOIScene(self.dimension, merged_areas)
def __ror__(self, other):
+ """Merge another scene using | operator."""
assert(other.dimension == self.__dimension)
@@ -375,6 +377,7 @@ class AOIScene():
return AOIScene(self.dimension, merged_areas)
def __ior__(self, other):
+ """Merge scene with another scene in-place using |= operator."""
assert(other.dimension == self.__dimension)