pub unsafe trait CIPerspectiveTile: CIFilterProtocol {
// Provided methods
unsafe fn inputImage(&self) -> Option<Retained<CIImage>>
where Self: Sized + Message { ... }
unsafe fn setInputImage(&self, input_image: Option<&CIImage>)
where Self: Sized + Message { ... }
unsafe fn topLeft(&self) -> CGPoint
where Self: Sized + Message { ... }
unsafe fn setTopLeft(&self, top_left: CGPoint)
where Self: Sized + Message { ... }
unsafe fn topRight(&self) -> CGPoint
where Self: Sized + Message { ... }
unsafe fn setTopRight(&self, top_right: CGPoint)
where Self: Sized + Message { ... }
unsafe fn bottomRight(&self) -> CGPoint
where Self: Sized + Message { ... }
unsafe fn setBottomRight(&self, bottom_right: CGPoint)
where Self: Sized + Message { ... }
unsafe fn bottomLeft(&self) -> CGPoint
where Self: Sized + Message { ... }
unsafe fn setBottomLeft(&self, bottom_left: CGPoint)
where Self: Sized + Message { ... }
}Available on crate features
CIFilter and CIFilterBuiltins only.Expand description
The protocol for the Perspective Tile filter.
Applies a perspective transform to an image and then tiles the result.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn inputImage(&self) -> Option<Retained<CIImage>>
Available on crate feature CIImage only.
unsafe fn inputImage(&self) -> Option<Retained<CIImage>>
CIImage only.The image to use as an input for the effect.
Sourceunsafe fn setInputImage(&self, input_image: Option<&CIImage>)
Available on crate feature CIImage only.
unsafe fn setInputImage(&self, input_image: Option<&CIImage>)
CIImage only.Setter for inputImage.
Sourceunsafe fn topLeft(&self) -> CGPoint
Available on crate feature objc2-core-foundation only.
unsafe fn topLeft(&self) -> CGPoint
objc2-core-foundation only.The top left coordinate of a tile.
Sourceunsafe fn setTopLeft(&self, top_left: CGPoint)
Available on crate feature objc2-core-foundation only.
unsafe fn setTopLeft(&self, top_left: CGPoint)
objc2-core-foundation only.Setter for topLeft.
Sourceunsafe fn topRight(&self) -> CGPoint
Available on crate feature objc2-core-foundation only.
unsafe fn topRight(&self) -> CGPoint
objc2-core-foundation only.The top right coordinate of a tile.
Sourceunsafe fn setTopRight(&self, top_right: CGPoint)
Available on crate feature objc2-core-foundation only.
unsafe fn setTopRight(&self, top_right: CGPoint)
objc2-core-foundation only.Setter for topRight.
Sourceunsafe fn bottomRight(&self) -> CGPoint
Available on crate feature objc2-core-foundation only.
unsafe fn bottomRight(&self) -> CGPoint
objc2-core-foundation only.The bottom right coordinate of a tile.
Sourceunsafe fn setBottomRight(&self, bottom_right: CGPoint)
Available on crate feature objc2-core-foundation only.
unsafe fn setBottomRight(&self, bottom_right: CGPoint)
objc2-core-foundation only.Setter for bottomRight.
Sourceunsafe fn bottomLeft(&self) -> CGPoint
Available on crate feature objc2-core-foundation only.
unsafe fn bottomLeft(&self) -> CGPoint
objc2-core-foundation only.The bottom left coordinate of a tile.
Sourceunsafe fn setBottomLeft(&self, bottom_left: CGPoint)
Available on crate feature objc2-core-foundation only.
unsafe fn setBottomLeft(&self, bottom_left: CGPoint)
objc2-core-foundation only.Setter for bottomLeft.