Skip to content

Commit

Permalink
fix: K_T and K_I values
Browse files Browse the repository at this point in the history
  • Loading branch information
flomonster committed Mar 20, 2021
1 parent 808f2ab commit ab9f3ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/kdnode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use crate::candidate::Candidates;
use crate::plane::Plane;
use crate::*;

static K_T: f32 = 15.;
static K_I: f32 = 20.;
static K_T: f32 = 4.;
static K_I: f32 = 1.;

#[derive(Clone, Debug)]
pub(crate) struct InternalNode {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
//! self.0.y.max(self.1.y).max(self.2.y),
//! self.0.z.max(self.1.z).max(self.2.z),
//! );
//! AABB(min, max)
//! [min, max]
//! }
//! }
//!
Expand Down

0 comments on commit ab9f3ae

Please sign in to comment.