File tree Expand file tree Collapse file tree 2 files changed +6
-18
lines changed
subprojects/robotpy-wpimath Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -4,21 +4,13 @@ functions:
44 - [double]
55 AngleModulus :
66 FloorDiv :
7- template_impls :
8- - [int64_t, int64_t]
9- # work around GCC 10 issue on raspbian
10- cpp_code : |
11- [](int64_t x, int64_t y) -> int64_t {
12- return frc::FloorDiv(x, y);
13- }
7+ # Use // operator instead, it's more efficient
8+ # - https://github.com/robotpy/mostrobotpy/pull/200
9+ ignore : true
1410 FloorMod :
15- template_impls :
16- - [int64_t, int64_t]
17- # work around GCC 10 issue on raspbian
18- cpp_code : |
19- [](int64_t x, int64_t y) -> int64_t {
20- return frc::FloorMod(x, y);
21- }
11+ # Use % operator instead, it's more efficient
12+ # - https://github.com/robotpy/mostrobotpy/pull/200
13+ ignore : true
2214 ApplyDeadband :
2315 param_override :
2416 maxMagnitude :
Original file line number Diff line number Diff line change 77from ._wpimath import (
88 angleModulus ,
99 applyDeadband ,
10- floorDiv ,
11- floorMod ,
1210 inputModulus ,
1311 objectToRobotPose ,
1412 slewRateLimit ,
1715__all__ = [
1816 "angleModulus" ,
1917 "applyDeadband" ,
20- "floorDiv" ,
21- "floorMod" ,
2218 "inputModulus" ,
2319 "objectToRobotPose" ,
2420 "slewRateLimit" ,
You can’t perform that action at this time.
0 commit comments