VertexArgs

data class VertexArgs(val x: Output<Int>? = null, val y: Output<Int>? = null) : ConvertibleToJava<VertexArgs>

A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.

Constructors

Link copied to clipboard
constructor(x: Output<Int>? = null, y: Output<Int>? = null)

Properties

Link copied to clipboard
val x: Output<Int>? = null

X coordinate.

Link copied to clipboard
val y: Output<Int>? = null

Y coordinate.

Functions

Link copied to clipboard
open override fun toJava(): VertexArgs