# CurvesGenerator **Repository Path**: cqjsc_admin/CurvesGenerator ## Basic Information - **Project Name**: CurvesGenerator - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-12 - **Last Updated**: 2025-05-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CurvesGenerator ## Overview This repository concludes some common used curves or polynomials on path planning. ## Dubins Path
rs1 rs2
## Reeds-Shepp Path
rs1 rs2
## Bezier Path
rs1 rs2
## B-Spline Line & Quintic Polynomial
rs1 rs2
## Reference * [Paper: ](https://projecteuclid.org/download/pdf_1/euclid.pjm/1102645450) Optimal paths for a car that goes both forwards and backwards, by J. A. REEDS & L. A. SHEPP. * [Adapted Paper: ](http://msl.cs.uiuc.edu/~lavalle/cs326a/rs.c) Some typos in the paper adapted. * [Book Chapter: ](http://planning.cs.uiuc.edu/node822.html) Planning Algorithm by Steven M. LaValle. * [C++ Version: ](https://ompl.kavrakilab.org/ReedsSheppStateSpace_8cpp_source.html) Library of OMPL. * [Julia Version: ](https://github.com/AtsushiSakai/HybridAStarTrailer/blob/master/src/rs_path.jl) From AtsushiSakai's work.