FocalPoint

@JsonClass(generateAdapter = true)
data class FocalPoint(val x: Any?, val y: Any?)

coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.

Constructors

Link copied to clipboard
fun FocalPoint(x: Any?, y: Any?)

Properties

Link copied to clipboard
val x: Any?

The coordinate point on the horizontal axis (int or double)

Link copied to clipboard
val y: Any?

The coordinate point on the vertical axis (int or double)