Struct rust_gpu_sdf::operators::intersection::IntersectionOp
source · pub struct IntersectionOp<Sdf> {
pub sdf: Sdf,
}
Expand description
Compute the boolean intersection of two distance fields.
Fields§
§sdf: Sdf
Implementations§
Trait Implementations§
source§impl<Sdf: Clone> Clone for IntersectionOp<Sdf>
impl<Sdf: Clone> Clone for IntersectionOp<Sdf>
source§fn clone(&self) -> IntersectionOp<Sdf>
fn clone(&self) -> IntersectionOp<Sdf>
Returns a copy 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<Sdf: Debug> Debug for IntersectionOp<Sdf>
impl<Sdf: Debug> Debug for IntersectionOp<Sdf>
source§impl<Sdf: Default> Default for IntersectionOp<Sdf>
impl<Sdf: Default> Default for IntersectionOp<Sdf>
source§fn default() -> IntersectionOp<Sdf>
fn default() -> IntersectionOp<Sdf>
Returns the “default value” for a type. Read more
source§impl<Sdf: Hash> Hash for IntersectionOp<Sdf>
impl<Sdf: Hash> Hash for IntersectionOp<Sdf>
source§impl<Sdf: Ord> Ord for IntersectionOp<Sdf>
impl<Sdf: Ord> Ord for IntersectionOp<Sdf>
source§fn cmp(&self, other: &IntersectionOp<Sdf>) -> Ordering
fn cmp(&self, other: &IntersectionOp<Sdf>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<Sdf: PartialEq> PartialEq<IntersectionOp<Sdf>> for IntersectionOp<Sdf>
impl<Sdf: PartialEq> PartialEq<IntersectionOp<Sdf>> for IntersectionOp<Sdf>
source§fn eq(&self, other: &IntersectionOp<Sdf>) -> bool
fn eq(&self, other: &IntersectionOp<Sdf>) -> bool
source§impl<Sdf: PartialOrd> PartialOrd<IntersectionOp<Sdf>> for IntersectionOp<Sdf>
impl<Sdf: PartialOrd> PartialOrd<IntersectionOp<Sdf>> for IntersectionOp<Sdf>
source§fn partial_cmp(&self, other: &IntersectionOp<Sdf>) -> Option<Ordering>
fn partial_cmp(&self, other: &IntersectionOp<Sdf>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more