Point

data class Point(val x: Expression, val y: Expression) : PrimitiveType

Expression to represent a 2D point with coordinates x and y.

Parameters

x

An Expression representing the X coordinate of the point.

y

An Expression representing the Y coordinate of the point.

Constructors

Link copied to clipboard
constructor(x: Expression, y: Expression)

Functions

Link copied to clipboard

Returns a list of strings of the identifiers of all the variables that this expression references.

Link copied to clipboard

Does this expression reference any variables?

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
Link copied to clipboard