mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 10:37:54 -05:00
Merge pull request #267 from Gjacquenot/patch-3
📝 Removed unused class attribute in quintic_polynomials_planner
This commit is contained in:
@@ -26,14 +26,7 @@ class QuinticPolynomial:
|
||||
|
||||
def __init__(self, xs, vxs, axs, xe, vxe, axe, T):
|
||||
|
||||
# calc coefficient of quinic polynomial
|
||||
self.xs = xs
|
||||
self.vxs = vxs
|
||||
self.axs = axs
|
||||
self.xe = xe
|
||||
self.vxe = vxe
|
||||
self.axe = axe
|
||||
|
||||
# calc coefficient of quintic polynomial
|
||||
self.a0 = xs
|
||||
self.a1 = vxs
|
||||
self.a2 = axs / 2.0
|
||||
|
||||
Reference in New Issue
Block a user