Skip to content

Commit

Permalink
Fix error in demo code
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoledoux committed Oct 7, 2024
1 parent 178c152 commit 15898b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/interpol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn main() {
let mut dt = startin::Triangulation::new();

let mut rng = thread_rng();
let thin_factor = 1;
let thin_factor = 10;
for laspt in reader.points() {
if rng.gen_ratio(1, thin_factor) == true {
let p = laspt.unwrap();
Expand Down

0 comments on commit 15898b6

Please sign in to comment.