#[repr(C)]pub struct Rangef {
pub min: f32,
pub max: f32,
}
Expand description
Inclusive range of floats, i.e. min..=max
, but more ergonomic than RangeInclusive
.
Fields§
§min: f32
§max: f32
Implementations§
§impl Rangef
impl Rangef
pub const EVERYTHING: Rangef = _
pub const EVERYTHING: Rangef = _
Infinite range that contains everything, from -∞ to +∞, inclusive.
pub const NOTHING: Rangef = _
pub const NOTHING: Rangef = _
The inverse of Self::EVERYTHING
: stretches from positive infinity to negative infinity.
Contains nothing.
pub fn new(min: f32, max: f32) -> Rangef
pub fn point(min_and_max: f32) -> Rangef
pub fn contains(self, x: f32) -> bool
pub fn as_positive(self) -> Rangef
pub fn as_positive(self) -> Rangef
Flip min
and max
if needed, so that min <= max
after.
pub fn intersection(self, other: Rangef) -> Rangef
pub fn intersection(self, other: Rangef) -> Rangef
The overlap of two ranges, i.e. the range that is contained by both.
If the ranges do not overlap, returns a range with span() < 0.0
.
assert_eq!(Rangef::new(0.0, 10.0).intersection(Rangef::new(5.0, 15.0)), Rangef::new(5.0, 10.0));
assert_eq!(Rangef::new(0.0, 10.0).intersection(Rangef::new(10.0, 20.0)), Rangef::new(10.0, 10.0));
assert!(Rangef::new(0.0, 10.0).intersection(Rangef::new(20.0, 30.0)).span() < 0.0);
Trait Implementations§
§impl<'de> Deserialize<'de> for Rangef
impl<'de> Deserialize<'de> for Rangef
§fn deserialize<__D>(
__deserializer: __D
) -> Result<Rangef, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<Rangef, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<&RangeInclusive<f32>> for Rangef
impl From<&RangeInclusive<f32>> for Rangef
§fn from(range: &RangeInclusive<f32>) -> Rangef
fn from(range: &RangeInclusive<f32>) -> Rangef
Converts to this type from the input type.
§impl From<RangeInclusive<f32>> for Rangef
impl From<RangeInclusive<f32>> for Rangef
§fn from(range: RangeInclusive<f32>) -> Rangef
fn from(range: RangeInclusive<f32>) -> Rangef
Converts to this type from the input type.
§impl From<RangeToInclusive<f32>> for Rangef
impl From<RangeToInclusive<f32>> for Rangef
§fn from(range: RangeToInclusive<f32>) -> Rangef
fn from(range: RangeToInclusive<f32>) -> Rangef
Converts to this type from the input type.
§impl PartialEq<RangeInclusive<f32>> for Rangef
impl PartialEq<RangeInclusive<f32>> for Rangef
§fn eq(&self, other: &RangeInclusive<f32>) -> bool
fn eq(&self, other: &RangeInclusive<f32>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for Rangef
impl Serialize for Rangef
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Rangef
impl Pod for Rangef
impl StructuralPartialEq for Rangef
Auto Trait Implementations§
impl RefUnwindSafe for Rangef
impl Send for Rangef
impl Sync for Rangef
impl Unpin for Rangef
impl UnwindSafe for Rangef
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
§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.