Lines Matching refs:bottom
340 bottom = int(timeindex) - timespan + scrolljump
341 self.timebase += timedelta(seconds=bottom)
342 self._scroll(self.raw_acceleration_x, bottom)
343 self._scroll(self.raw_acceleration_y, bottom)
344 self._scroll(self.raw_acceleration_z, bottom)
345 self._scroll(self.raw_acceleration_magnitude, bottom)
346 self._scroll(self.filtered_acceleration_x, bottom)
347 self._scroll(self.filtered_acceleration_y, bottom)
348 self._scroll(self.filtered_acceleration_z, bottom)
349 self._scroll(self.filtered_acceleration_magnitude, bottom)
350 self._scroll(self.tilt_angle, bottom)
351 self._scroll(self.orientation_angle, bottom)
352 self._scroll(self.current_rotation, bottom)
353 self._scroll(self.proposed_rotation, bottom)
354 self._scroll(self.predicted_rotation, bottom)
355 self._scroll(self.time_until_settled, bottom)
356 self._scroll(self.time_until_flat_delay_expired, bottom)
357 self._scroll(self.time_until_swing_delay_expired, bottom)
358 self._scroll(self.time_until_acceleration_delay_expired, bottom)
359 self._scroll(self.sample_latency, bottom)
384 def _scroll(self, timeseries, bottom): argument
385 bottom_index = bisect.bisect_left(timeseries[0], bottom)
389 timeseries[0][i] = timeindex - bottom