#[repr(C)]pub enum WarpPolarMode {
WARP_POLAR_LINEAR = 0,
WARP_POLAR_LOG = 256,
}
Expand description
Variants§
WARP_POLAR_LINEAR = 0
Remaps an image to/from polar space.
WARP_POLAR_LOG = 256
Remaps an image to/from semilog-polar space.
Trait Implementations§
Source§impl Clone for WarpPolarMode
impl Clone for WarpPolarMode
Source§fn clone(&self) -> WarpPolarMode
fn clone(&self) -> WarpPolarMode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WarpPolarMode
impl Debug for WarpPolarMode
Source§impl From<WarpPolarMode> for i32
impl From<WarpPolarMode> for i32
Source§fn from(v: WarpPolarMode) -> Self
fn from(v: WarpPolarMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WarpPolarMode
impl PartialEq for WarpPolarMode
Source§impl TryFrom<i32> for WarpPolarMode
impl TryFrom<i32> for WarpPolarMode
impl Copy for WarpPolarMode
impl Eq for WarpPolarMode
impl StructuralPartialEq for WarpPolarMode
Auto Trait Implementations§
impl Freeze for WarpPolarMode
impl RefUnwindSafe for WarpPolarMode
impl Send for WarpPolarMode
impl Sync for WarpPolarMode
impl Unpin for WarpPolarMode
impl UnwindSafe for WarpPolarMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more