cidre 0.16.0

Apple frameworks bindings for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{define_obj_type, ns, objc};

define_obj_type!(
    #[doc(alias = "ARTrackedRaycast")]
    /// Continuously updated raycast that can be stopped.
    pub TrackedRaycast(ns::Id)
);

impl TrackedRaycast {
    /// Stops tracked raycasting updates.
    #[objc::msg_send(stopTracking)]
    pub fn stop_tracking(&mut self);
}