-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I change the turning radius? #4
Comments
Thanks for your interest! There is no option to change it right now. The original paper only prescribes turning around a unit circle (eg. a circle of radius 1). Maybe there are some papers since then that compute the formulas for arbitrary radiuses. Looking at the formula for path1 for instance:
I didn't doublecheck this but I believe to get a radius of size rho, you would do
Which might need a bit more work derivating for the other formulas but definitely doable with some time. Hope this helps! |
@ferreirajoaouerj @nathanlct do you have a solution now for changing the turning radius? |
@memo1400 I did not work on this on my end. Just thinking of this now but wouldn't it work to scale all the points then scale them back? ie. multiply all initial (x,y) coordinates by rho, compute the paths with the current code (ie a turning radius of 1) then divide the paths by rho and you would get paths with a turning radius of 1/rho (just a thought, don't have time to verify this right now) |
This works, thank you! For reference, this is my code:
|
Thank you for making this package available! How do I change the maximum turning radius?
The text was updated successfully, but these errors were encountered: