MaskCoords

class pyrogram.raw.base.MaskCoords

Mask coordinates (if this is a mask sticker, attached to a photo)

Constructors:

This base type has 1 constructor available.

MaskCoords

Position on a photo where a mask should be placed when attaching stickers to media »

TL Schema

maskCoords#aed6dbb2
n:int
x:double
y:double
zoom:double

= MaskCoords

Parameter Tree

MaskCoords
├── nint
├── xdouble
├── ydouble
└── zoomdouble

Example

MaskCoords(
    n=0,
    x=0.0,
    y=0.0,
    zoom=0.0,
)