pub unsafe trait CIBarsSwipeTransition: CITransitionFilter {
// Provided methods
unsafe fn angle(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setAngle(&self, angle: c_float)
where Self: Sized + Message { ... }
unsafe fn width(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setWidth(&self, width: c_float)
where Self: Sized + Message { ... }
unsafe fn barOffset(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setBarOffset(&self, bar_offset: c_float)
where Self: Sized + Message { ... }
}Available on crate features
CIFilter and CIFilterBuiltins only.Expand description
The protocol for the Bars Swipe Transition filter.
Transitions from one image to another by swiping rectangular portions of the foreground image to disclose the target image.
See also Apple’s documentation