pub trait ToPolyline<N: RealField + Copy> {
    type DiscretizationParameter;
    fn to_polyline(&self, i: Self::DiscretizationParameter) -> Polyline<N>;
}
Expand description

Trait implemented by shapes that can be approximated by a triangle mesh.

Associated Types

Required methods

Builds a triangle mesh from this shape.

Arguments:
  • i - the discretization parameters.

Implementors