Add MaskPosition type

This commit is contained in:
Dan 2018-03-09 14:46:38 +01:00
parent 4724953971
commit f3f462c009

View File

@ -0,0 +1,10 @@
class MaskPosition:
def __init__(self,
point: str,
x_shift: float,
y_shift: float,
scale: float):
self.point = point
self.x_shift = x_shift
self.y_shift = y_shift
self.scale = scale