Rectangle

open class Rectangle<P : Position2D<P>?> : Abstract2DShape<P>

A Rectangle.

Parameters

<P>

position type

Constructors

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

Functions

Link copied to clipboard
open fun and(other: Predicate<in T>): Predicate<T>
Link copied to clipboard
abstract fun contains(position: P): Boolean

Checks if the position is inside the shape.

fun contains(position: P): Boolean
Checks if the position is inside the shape.
Link copied to clipboard
open fun invoke(position: P): Boolean

Checks if the position is inside the shape.

abstract fun invoke(p: P1): R
Link copied to clipboard
open fun <T> isEqual(targetRef: Any): Predicate<T>
Link copied to clipboard
open fun negate(): Predicate<T>
Link copied to clipboard
open fun <T> not(target: Predicate<in T>): Predicate<T>
Link copied to clipboard
open fun or(other: Predicate<in T>): Predicate<T>
Link copied to clipboard
open fun test(position: P): Boolean

Checks if the position is inside the shape.

abstract fun test(p: T): Boolean
Link copied to clipboard
open fun toString(): String