Documentation / @ripl/3d / ParametricSurface
Type Alias: ParametricSurface ​
ParametricSurface = (
u,v) =>Vector3
Defined in: 3d/src/elements/parametric.ts:40
Evaluates a surface at a point in its parameter domain.
Parameters ​
| Parameter | Type | Description |
|---|---|---|
u | number | The first parameter, from 0 to 1. |
v | number | The second parameter, from 0 to 1. |
Returns ​
The world-space point at (u, v).