Skip to content

Commit

Permalink
changed input xy points to create path
Browse files Browse the repository at this point in the history
  • Loading branch information
ShisatoYano committed Dec 4, 2024
1 parent 09d956b commit 1aeab11
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified src/simulations/course/cubic_spline/cubic_spline_2d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/simulations/course/cubic_spline/cubic_spline_2d_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def main():
Main process function
"""

x_points = [-2.5, 0.0, 2.5, 5.0, 7.5, 3.0, -1.0]
y_points = [0.7, -6, 5, 6.5, 0.0, 5.0, -2.0]
x_points = [0.0, 10.0, 25, 40, 50]
y_points = [0.0, 4, -12, 20, -13]

ds = 0.1 # distance between 2 interpolated points

Expand Down
Binary file modified src/simulations/course/cubic_spline/cubic_spline_curvature.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/simulations/course/cubic_spline/cubic_spline_yaw_angle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1aeab11

Please sign in to comment.