class FocusPoint

August 13, 2019 ยท View on GitHub

Member values

Member nameData typeDescription
xuint32Pixel value on the X axis, between 0 and the current resolution width - 1
yuint32Pixel value on the Y axis, between 0 and the current resolution height - 1

Member functions

Function nameReturn typeInput typeDescription
x()uint32voidReturns the current value of x. If the x is not set, returns 0.
set_x()voiduint32Sets the value of x. After calling this, x() will return value.
clear_x()voidvoidClears the value of x. After calling this, x() will return 0.
y()uint32voidReturns the current value of y. If the y is not set, returns 0.
set_y()voiduint32Sets the value of y. After calling this, y() will return value.
clear_y()voidvoidClears the value of y. After calling this, y() will return 0.

Parent topic: VisionConfig (C++)