@@ -47,7 +47,7 @@ def example_standard_trajectory() -> None:
4747 time_array = np .arange (0 , t_duration + t_sample , t_sample )
4848
4949 # Evaluate trajectory at those time points
50- positions , velocities , accelerations , jerks = trajectory .evaluate (time_array )
50+ positions , velocities , accelerations , jerks = trajectory .evaluate_full (time_array )
5151
5252 # Get phase durations
5353 phase_durations = trajectory .get_phase_durations ()
@@ -135,7 +135,7 @@ def example_velocity_matching() -> None:
135135 time_array = np .arange (0 , t_duration + t_sample , t_sample )
136136
137137 # Evaluate trajectory at those time points
138- positions , velocities , accelerations , jerks = trajectory .evaluate (time_array )
138+ positions , velocities , accelerations , jerks = trajectory .evaluate_full (time_array )
139139
140140 # Plot results
141141 fig , (ax1 , ax2 , ax3 , ax4 ) = plt .subplots (4 , 1 , figsize = (12 , 10 ), sharex = True )
@@ -202,7 +202,7 @@ def example_negative_displacement() -> None:
202202 time_array = np .arange (0 , t_duration + t_sample , t_sample )
203203
204204 # Evaluate trajectory at those time points
205- positions , velocities , accelerations , jerks = trajectory .evaluate (time_array )
205+ positions , velocities , accelerations , jerks = trajectory .evaluate_full (time_array )
206206
207207 # Get phase durations
208208 phase_durations = trajectory .get_phase_durations ()
@@ -290,7 +290,7 @@ def example_asymmetric_velocities() -> None:
290290 time_array = np .arange (0 , t_duration + t_sample , t_sample )
291291
292292 # Evaluate trajectory at those time points
293- positions , velocities , accelerations , jerks = trajectory .evaluate (time_array )
293+ positions , velocities , accelerations , jerks = trajectory .evaluate_full (time_array )
294294
295295 # Get phase durations
296296 phase_durations = trajectory .get_phase_durations ()
0 commit comments