pub trait Mapped<P, C, S>: Sized {
    fn topological_clone(&self) -> Self
    where
        P: Clone,
        C: Clone,
        S: Clone
, { ... } }
Expand description

Mapping, duplicates and moves a topological element.

Provided Methods§

Returns another topology whose points, curves, and surfaces are cloned.

Implementations on Foreign Types§

A trait for a unified definition of the function mapped.

Implementors§