Point

data class Point(val x: Double, val y: Double)(source)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val x: Double
Link copied to clipboard
val y: Double

Functions

Link copied to clipboard
operator fun div(operand: Double): Point
Link copied to clipboard
operator fun minus(other: Point): Point
Link copied to clipboard
Link copied to clipboard
operator fun plus(other: Point): Point
Link copied to clipboard
operator fun times(operand: Double): Point
Link copied to clipboard
operator fun unaryMinus(): Point