Compare commits

..
2 Commits
Author SHA1 Message Date
gnxlxnxxandGitHub f026ae21bb Update Cargo.toml 2022-01-11 10:45:41 +01:00
gnxlxnxxandGitHub 92d21aeb9a Fix Typo in unit test 2021-06-10 20:47:59 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ keywords = ["pathfinder", "dubinspath"]
categories = ["algorithms"] categories = ["algorithms"]
readme = "README.md" readme = "README.md"
license = "Apache-2.0/MIT" license = "Apache-2.0/MIT"
authors = ["Roman Kretschmer <gnxlxnxx@web.de>"] authors = ["Roman Kretschmer <roman@kretschmer.email>"]
edition = "2018" edition = "2018"
+1 -1
View File
@@ -35,7 +35,7 @@ mod tests {
let radius = 0.5; let radius = 0.5;
let end_point = Point::new(-7.0 * radius, 0.0); let end_point = Point::new(-7.0 * radius, 0.0);
let end_angle = Angle::zero(); let end_angle = Angle::zero();
RouteCCC::rlr(radius, end_point, end_angle).unwrap(); RouteCCC::lrl(radius, end_point, end_angle).unwrap();
} }
#[test] #[test]