Parametric2D

interface Parametric2D<R>(source)

Parametric2D defines a two-dimensional parametric function.

With this interface, any implementing class represents arbitrary parametric functions that take two input parameters u and v and return a result of type R.

Parameters

R

The return type of the parametric function.

Functions

Link copied to clipboard
abstract fun value(u: Double, v: Double): R