We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed94e3a commit 0719228Copy full SHA for 0719228
wpiunits/src/main/java/edu/wpi/first/units/Units.java
@@ -203,6 +203,12 @@ private Units() {
203
*/
204
public static final LinearAccelerationUnit FeetPerSecondPerSecond = FeetPerSecond.per(Second);
205
206
+ /**
207
+ * A unit of linear acceleration equivalent to accelerating at a rate of one {@link #Inch Inch}
208
+ * per {@link #Second} every second.
209
+ */
210
+ public static final LinearAccelerationUnit InchesPerSecondPerSecond = InchesPerSecond.per(Second);
211
+
212
/**
213
* A unit of angular acceleration equivalent to accelerating at a rate of one {@link #Rotations
214
* Rotation} per {@link #Second} every second.
0 commit comments