Trait truck_geometry::base::ParametricSurface3D[][src]

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