pub trait SignedDistanceOperator<In, Out> {
    fn operator<Sdf>(&self, sdf: &Sdf, p: In) -> Out
    where
        Sdf: SignedDistanceField<In, Out>,
        In: Clone
; }
Expand description

Modifies the input / output of a SignedDistanceField.

Required Methods§

Implementations on Foreign Types§

Implementors§