pub trait ParametricSurface3D: ParametricSurface<Point = Point3<f64>, Vector = Vector3<f64>> {
    fn normal(&self, u: f64, v: f64) -> Vector3<f64> { ... }
}
Expand description

3D parametric surface

Provided Methods§

Returns the normal vector at (u, v).

Implementations on Foreign Types§

Implementors§