Inherits Object.
Describes position of a clickable rectangle area on a story media.
Public Fields | |
double | x_percentage_ |
The abscissa of the rectangle's center, as a percentage of the media width. | |
double | y_percentage_ |
The ordinate of the rectangle's center, as a percentage of the media height. | |
double | width_percentage_ |
The width of the rectangle, as a percentage of the media width. | |
double | height_percentage_ |
The height of the rectangle, as a percentage of the media height. | |
double | rotation_angle_ |
Clockwise rotation angle of the rectangle, in degrees; 0-360. | |
double | corner_radius_percentage_ |
The radius of the rectangle corner rounding, as a percentage of the media width. | |
Public Instance Methods | |
storyAreaPosition () | |
storyAreaPosition (double x_percentage_, double y_percentage_, double width_percentage_, double height_percentage_, double rotation_angle_, double corner_radius_percentage_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1533023124 |
Identifier uniquely determining a type of the object. | |
Describes position of a clickable rectangle area on a story media.
storyAreaPosition | ( | double | x_percentage_, |
double | y_percentage_, | ||
double | width_percentage_, | ||
double | height_percentage_, | ||
double | rotation_angle_, | ||
double | corner_radius_percentage_ | ||
) |
Describes position of a clickable rectangle area on a story media.
[in] | x_percentage_ | The abscissa of the rectangle's center, as a percentage of the media width. |
[in] | y_percentage_ | The ordinate of the rectangle's center, as a percentage of the media height. |
[in] | width_percentage_ | The width of the rectangle, as a percentage of the media width. |
[in] | height_percentage_ | The height of the rectangle, as a percentage of the media height. |
[in] | rotation_angle_ | Clockwise rotation angle of the rectangle, in degrees; 0-360. |
[in] | corner_radius_percentage_ | The radius of the rectangle corner rounding, as a percentage of the media width. |
|
finalvirtual |