Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cuppachino authored Dec 7, 2023
1 parent 4c1c9ba commit 0aed258
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To use this crate, add it as a dependency to your `Cargo.toml` file:

```rust
[dependencies]
intersection_detection = "0.1.2"
intersection_detection = "0.1.3"
```

## Example
Expand All @@ -23,7 +23,7 @@ fn main() {
let line2 = Line::new([0.0, 1.0], [1.0, 0.0]);

let computation = line1
.intersection(&line2, f32::EPSILON)
.intersection(&line2)
.try_into_intersection()
.ok();

Expand Down

0 comments on commit 0aed258

Please sign in to comment.