VertexArgs

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

A 2D coordinate in an image. The origin is the top-left.

Constructors

Link copied to clipboard
fun VertexArgs(x: Output<Double>? = null, y: Output<Double>? = null)

Functions

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

Properties

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

X coordinate.

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

Y coordinate.