Point

open class Point(val x: Double, val y: Double)

Inheritors

Constructors

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

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun copy(x: Double = this.x, y: Double = this.y): Point
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String