pub struct Touch<F: Debug + Eq, N: Copy + RealField> { /* private fields */ }
Expand description
Touch gestures inducing slide, orbit, scale, and focus.
Implements Default
and can be created with Touch::default()
.
All methods except Self::fingers()
must be invoked on matching events fired by your 3D
graphics library of choice.
Implementations§
Source§impl<F: Debug + Copy + Eq, N: Copy + RealField> Touch<F, N>
impl<F: Debug + Copy + Eq, N: Copy + RealField> Touch<F, N>
Sourcepub fn compute(
&mut self,
fid: F,
pos: Point2<N>,
mvs: usize,
) -> Option<(usize, Point2<N>, N, N)>
pub fn compute( &mut self, fid: F, pos: Point2<N>, mvs: usize, ) -> Option<(usize, Point2<N>, N, N)>
Computes centroid position, roll angle, and scale ratio from finger gestures.
Parameters are:
fid
as generic finger ID likeSome(id)
for touch andNone
for mouse events,pos
as current cursor/finger position in screen space,mvs
as number of finger moves for debouncing potential finger tap gesture with zero resulting in no delay of non-tap gestures while tap gesture can still be recognized. Use zero unless tap gestures are hardly recognized.
Returns number of fingers, centroid position, roll angle, and scale ratio in screen space in
the order mentioned or None
when debouncing tap gesture with non-vanishing mvs
. See
Self::discard()
for tap gesture result.
§Panics
Panics with more than ten fingers.
Sourcepub fn discard(&mut self, fid: F) -> Option<(usize, Point2<N>)>
pub fn discard(&mut self, fid: F) -> Option<(usize, Point2<N>)>
Removes finger position and returns number of fingers and centroid position of tap gesture.
Returns None
as long as there are finger positions or no tap gesture has been recognized.
Discards finger positions and tap gesture if generic finger ID fid
is unknown.
Trait Implementations§
Auto Trait Implementations§
impl<F, N> Freeze for Touch<F, N>
impl<F, N> RefUnwindSafe for Touch<F, N>where
N: RefUnwindSafe,
F: RefUnwindSafe,
impl<F, N> Send for Touch<F, N>where
F: Send,
impl<F, N> Sync for Touch<F, N>where
F: Sync,
impl<F, N> Unpin for Touch<F, N>
impl<F, N> UnwindSafe for Touch<F, N>where
N: UnwindSafe,
F: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.