mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-09 16:14:52 +00:00
Add MaskPosition type
This commit is contained in:
parent
4724953971
commit
f3f462c009
1 changed files with 10 additions and 0 deletions
10
pyrogram/client/types/mask_position.py
Normal file
10
pyrogram/client/types/mask_position.py
Normal 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
|
||||||
Loading…
Reference in a new issue