📝 Removed unused class attribute in quintic_polynomials_planner.py

This commit is contained in:
Guillaume Jacquenot
2020-01-03 14:01:47 +01:00
committed by GitHub
parent 8b3e6fa551
commit 0c708766e1

View File

@@ -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