Parametric3D

interface Parametric3D<R>(source)

Represents a three-dimensional parametric function.

This interface models a parametric function that takes three parameters u, v, and w representing input variables, and calculates a value of type R based on their values.

Parameters

R

The return type of the parametric function.

Functions

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