DefaultPolarPoint

data class DefaultPolarPoint<R, T>(val r: R, val theta: T) : PolarPoint<R, T>

Default implementation of the PolarPoint interface.

Parameters

R

The type of the radius axis value

T

The type of the angular axis value

Constructors

Link copied to clipboard
constructor(r: R, theta: T)

Properties

Link copied to clipboard
open override val r: R

The radius value of this Point.

Link copied to clipboard
open override val theta: T

The angular value of this Point.