#[repr(C)]pub struct OfxRectD {
pub x1: f64,
pub y1: f64,
pub x2: f64,
pub y2: f64,
}Expand description
@brief Defines two dimensional double region
Regions are x1 <= x < x2
Infinite regions are flagged by setting
- x1 = \ref kOfxFlagInfiniteMin
- y1 = \ref kOfxFlagInfiniteMin
- x2 = \ref kOfxFlagInfiniteMax
- y2 = \ref kOfxFlagInfiniteMax
Fields§
§x1: f64§y1: f64§x2: f64§y2: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for OfxRectD
impl RefUnwindSafe for OfxRectD
impl Send for OfxRectD
impl Sync for OfxRectD
impl Unpin for OfxRectD
impl UnwindSafe for OfxRectD
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