pub struct SpaceSnapper {
ref_spatial_node_index: SpatialNodeIndex,
current_target_spatial_node_index: SpatialNodeIndex,
snapping_transform: Option<ScaleOffset>,
raster_pixel_scale: RasterPixelScale,
}Fields§
§ref_spatial_node_index: SpatialNodeIndex§current_target_spatial_node_index: SpatialNodeIndex§snapping_transform: Option<ScaleOffset>§raster_pixel_scale: RasterPixelScaleImplementations§
Source§impl SpaceSnapper
impl SpaceSnapper
pub fn new( ref_spatial_node_index: SpatialNodeIndex, raster_pixel_scale: RasterPixelScale, ) -> Self
pub fn new_with_target<S: SpatialNodeContainer>( ref_spatial_node_index: SpatialNodeIndex, target_node_index: SpatialNodeIndex, raster_pixel_scale: RasterPixelScale, spatial_tree: &S, ) -> Self
pub fn set_target_spatial_node<S: SpatialNodeContainer>( &mut self, target_node_index: SpatialNodeIndex, spatial_tree: &S, )
pub fn snap_rect<F>(&self, rect: &Box2D<f32, F>) -> Box2D<f32, F>where
F: Debug,
pub fn snap_point<F>(&self, point: &Point2D<f32, F>) -> Point2D<f32, F>where
F: Debug,
Trait Implementations§
Source§impl Clone for SpaceSnapper
impl Clone for SpaceSnapper
Source§fn clone(&self) -> SpaceSnapper
fn clone(&self) -> SpaceSnapper
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 moreAuto Trait Implementations§
impl Freeze for SpaceSnapper
impl RefUnwindSafe for SpaceSnapper
impl Send for SpaceSnapper
impl Sync for SpaceSnapper
impl Unpin for SpaceSnapper
impl UnwindSafe for SpaceSnapper
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more