pub trait WSign<Rhs>: Sized {
    fn copy_sign_to(self, to: Rhs) -> Rhs;
}
Expand description

Trait to copy the sign of each component of one scalar/vector/matrix to another.

Required Methods

Copy the sign of each component of self to the corresponding component of to.

Implementations on Foreign Types

Implementors