EuclideanKategory

Types

Link copied to clipboard

Properties

Link copied to clipboard
abstract val Vector<N>.lengthSquared: N
Link copied to clipboard
abstract val pointEquality: Equality<Point<N>>
Link copied to clipboard

Functions

Link copied to clipboard
abstract infix fun Vector<N>.dot(other: Vector<N>): N
Link copied to clipboard
open operator fun Point2<N>.minus(other: Point2<N>): Vector2<N>
open operator fun Point2<N>.minus(other: Vector2<N>): Point2<N>
abstract operator fun Point<N>.minus(other: Point<N>): Vector<N>
abstract operator fun Point<N>.minus(other: Vector<N>): Point<N>
open operator fun Vector2<N>.minus(other: Vector2<N>): Vector2<N>
abstract operator fun Vector<N>.minus(other: Vector<N>): Vector<N>
Link copied to clipboard
open operator fun Point2<N>.plus(other: Vector2<N>): Point2<N>
abstract operator fun Point<N>.plus(other: Vector<N>): Point<N>
open operator fun Vector2<N>.plus(other: Point2<N>): Point2<N>
open operator fun Vector2<N>.plus(other: Vector2<N>): Vector2<N>
abstract operator fun Vector<N>.plus(other: Point<N>): Point<N>
abstract operator fun Vector<N>.plus(other: Vector<N>): Vector<N>
Link copied to clipboard
open operator fun N.times(other: Vector2<N>): Vector2<N>
abstract operator fun N.times(other: Vector<N>): Vector<N>
open operator fun Vector2<N>.times(other: N): Vector2<N>
abstract operator fun Vector<N>.times(other: N): Vector<N>
Link copied to clipboard
open operator fun Vector2<N>.unaryMinus(): Vector2<N>
abstract operator fun Vector<N>.unaryMinus(): Vector<N>