This commit is contained in:
Hartmut Seichter 2023-01-09 16:07:07 +01:00
parent 2a144f3420
commit 5a75999209
2 changed files with 7 additions and 5 deletions

View file

@ -40,7 +40,11 @@ impl Default for OffAxisProjection {
fn default() -> Self {
Self {
far: 1000.0,
projection_matrix: make_projection_rh_custom(45.0f32.to_radians(),1.3f32, 1.0, 1000.0)
projection_matrix: make_projection_rh_custom(
45.0f32.to_radians(),
1.3f32,
1.0,
1000.0)
}
}
}

View file

@ -28,8 +28,6 @@ use vrpn::{
TypedBodylessHandler, Unbuffer,
};
struct TrackerProxy;
#[derive(Resource, Debug)]
pub struct Tracker;
@ -43,7 +41,7 @@ impl FromWorld for Tracker {
std::thread::spawn(move || {
// 212.201.64.122 | 127.0.0.1
let addr: SocketAddr = "212.201.64.122:3883".parse().unwrap();
let addr: SocketAddr = "127.0.0.1:3883".parse().unwrap();
let mut stream = TcpStream::connect(addr).unwrap();
stream.set_nodelay(true).unwrap();
@ -92,7 +90,7 @@ impl FromWorld for Tracker {
match result {
Ok(result) => { eprintln!("Pose from tracker {:?}",result.body);},
Err(_) => {}
Err(_) => { /* silently fail */ }
}
}