pub struct FbmCoordinateParameters {
pub mul_x: f32,
pub mul_y: f32,
pub add_x: f32,
pub add_y: f32,
}Expand description
Represents the coordinates used in the *_fbm methods.
Fields§
§mul_x: f32See the *_fbm methods for details on how this parameter is used.
mul_y: f32See the *_fbm methods for details on how this parameter is used.
add_x: f32See the *_fbm methods for details on how this parameter is used.
add_y: f32See the *_fbm methods for details on how this parameter is used.
Trait Implementations§
Source§impl Clone for FbmCoordinateParameters
impl Clone for FbmCoordinateParameters
Source§fn clone(&self) -> FbmCoordinateParameters
fn clone(&self) -> FbmCoordinateParameters
Returns a duplicate 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 FbmCoordinateParameters
impl Debug for FbmCoordinateParameters
impl Copy for FbmCoordinateParameters
Auto Trait Implementations§
impl Freeze for FbmCoordinateParameters
impl RefUnwindSafe for FbmCoordinateParameters
impl Send for FbmCoordinateParameters
impl Sync for FbmCoordinateParameters
impl Unpin for FbmCoordinateParameters
impl UnwindSafe for FbmCoordinateParameters
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