pub trait ToUnsigned {
    fn to_unsigned(self) -> UnsignedCoord;
}
Expand description

Convert a value to an unsigned coordinate

Required Methods

Convert the signed coordinate to an unsigned coordinate

Implementors