Package edu.wpi.first.math.trajectory
Class ExponentialProfile.ProfileTiming
java.lang.Object
edu.wpi.first.math.trajectory.ExponentialProfile.ProfileTiming
- Enclosing class:
- ExponentialProfile
Profile timing.
-
Field Summary
Modifier and TypeFieldDescriptionfinal double
Profile inflection time.final double
Total profile time. -
Constructor Summary
ModifierConstructorDescriptionprotected
ProfileTiming
(double inflectionTime, double totalTime) Constructs a ProfileTiming. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isFinished
(double t) Decides if the profile is finished by time t.
-
Field Details
-
inflectionTime
Profile inflection time. -
totalTime
Total profile time.
-
-
Constructor Details
-
ProfileTiming
Constructs a ProfileTiming.- Parameters:
inflectionTime
- Profile inflection time.totalTime
- Total profile time.
-
-
Method Details
-
isFinished
Decides if the profile is finished by time t.- Parameters:
t
- The time since the beginning of the profile.- Returns:
- if the profile is finished at time t.
-