Polar2dDual

data class Polar2dDual<Param>(val theta: DualNum<Param>, val radius: DualNum<Param>)

The dual number variant of Polar2d.

Constructors

Link copied to clipboard
constructor(theta: DualNum<Param>, radius: DualNum<Param>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val radius: DualNum<Param>
Link copied to clipboard
val theta: DualNum<Param>

Functions

Link copied to clipboard
fun toCartesian(): Vector2dDual<Param>

Returns the cartesian form of these polar coordinates.

Link copied to clipboard
fun value(): Polar2d

Returns the value of this polar coordinate.