Parametric1D

interface Parametric1D<R>(source)

Represents a 1-dimensional parametric function that computes a value of type R based on a parameter t of type Double. This interface can be implemented to define various parametric mathematical or functional relationships.

Parameters

R

The return type of the function, representing the computed value.

Functions

Link copied to clipboard
abstract fun value(t: Double): R