Skip to content

Commit ef386d9

Browse files
authored
Merge pull request AtsushiSakai#267 from Gjacquenot/patch-3
📝 Removed unused class attribute in quintic_polynomials_planner
2 parents 8b3e6fa + 0c70876 commit ef386d9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

PathPlanning/QuinticPolynomialsPlanner/quintic_polynomials_planner.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,7 @@ class QuinticPolynomial:
2626

2727
def __init__(self, xs, vxs, axs, xe, vxe, axe, T):
2828

29-
# calc coefficient of quinic polynomial
30-
self.xs = xs
31-
self.vxs = vxs
32-
self.axs = axs
33-
self.xe = xe
34-
self.vxe = vxe
35-
self.axe = axe
36-
29+
# calc coefficient of quintic polynomial
3730
self.a0 = xs
3831
self.a1 = vxs
3932
self.a2 = axs / 2.0

0 commit comments

Comments
 (0)