Skip to content

Commit 8f547fc

Browse files
committed
wpimath
1 parent b870f1b commit 8f547fc

File tree

12 files changed

+26
-24
lines changed

12 files changed

+26
-24
lines changed

subprojects/robotpy-wpimath/pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ version-file = "wpimath/version.py"
3535
[tool.hatch.build.hooks.meson]
3636

3737
[tool.semiwrap]
38-
# update_init = [
39-
# "wpimath",
40-
# "wpimath.controller wpimath._controls._controls.controller",
41-
# "wpimath.estimator wpimath._controls._controls.estimator",
42-
# "wpimath.filter",
43-
# "wpimath.geometry",
44-
# "wpimath.optimization wpimath._controls._controls.optimization",
45-
# "wpimath.path wpimath._controls._controls.path",
46-
# "wpimath.spline",
47-
# "wpimath.system wpimath._controls._controls.system",
48-
# "wpimath.trajectory wpimath._controls._controls.trajectory",
49-
# "wpimath.trajectory.constraint wpimath._controls._controls.constraint",
50-
# ]
38+
update_init = [
39+
"wpimath",
40+
"wpimath.controller wpimath._controls._controls.controller",
41+
"wpimath.estimator wpimath._controls._controls.estimator",
42+
"wpimath.filter",
43+
"wpimath.geometry",
44+
"wpimath.optimization wpimath._controls._controls.optimization",
45+
"wpimath.path wpimath._controls._controls.path",
46+
"wpimath.spline",
47+
"wpimath.system wpimath._controls._controls.system",
48+
"wpimath.trajectory wpimath._controls._controls.trajectory",
49+
"wpimath.trajectory.constraint wpimath._controls._controls.constraint",
50+
]
5151

5252
scan_headers_ignore = [
5353

subprojects/robotpy-wpimath/wpimath/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
# Needed for stubgen
44
from . import geometry
55

6-
# autogenerated by 'robotpy-build create-imports wpimath wpimath._wpimath'
6+
# autogenerated by 'semiwrap create-imports wpimath wpimath._wpimath'
77
from ._wpimath import (
88
angleModulus,
99
applyDeadband,
1010
floorDiv,
1111
floorMod,
1212
inputModulus,
1313
objectToRobotPose,
14+
slewRateLimit,
1415
)
1516

1617
__all__ = [
@@ -20,4 +21,5 @@
2021
"floorMod",
2122
"inputModulus",
2223
"objectToRobotPose",
24+
"slewRateLimit",
2325
]

subprojects/robotpy-wpimath/wpimath/controller/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# autogenerated by 'robotpy-build create-imports wpimath.controller wpimath._controls._controls.controller'
1+
# autogenerated by 'semiwrap create-imports wpimath.controller wpimath._controls._controls.controller'
22
from .._controls._controls.controller import (
33
ArmFeedforward,
44
BangBangController,

subprojects/robotpy-wpimath/wpimath/estimator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# autogenerated by 'robotpy-build create-imports wpimath.estimator wpimath._controls._controls.estimator'
1+
# autogenerated by 'semiwrap create-imports wpimath.estimator wpimath._controls._controls.estimator'
22
from .._controls._controls.estimator import (
33
DifferentialDrivePoseEstimator,
44
DifferentialDrivePoseEstimator3d,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from . import _init__filter
22

3-
# autogenerated by 'robotpy-build create-imports wpimath.filter wpimath.filter._filter'
3+
# autogenerated by 'semiwrap create-imports wpimath.filter wpimath.filter._filter'
44
from ._filter import Debouncer, LinearFilter, MedianFilter, SlewRateLimiter
55

66
__all__ = ["Debouncer", "LinearFilter", "MedianFilter", "SlewRateLimiter"]

subprojects/robotpy-wpimath/wpimath/geometry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from . import _init__geometry
22

3-
# autogenerated by 'robotpy-build create-imports wpimath.geometry wpimath.geometry._geometry'
3+
# autogenerated by 'semiwrap create-imports wpimath.geometry wpimath.geometry._geometry'
44
from ._geometry import (
55
CoordinateAxis,
66
CoordinateSystem,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# autogenerated by 'robotpy-build create-imports wpimath.optimization wpimath._controls._controls.optimization'
1+
# autogenerated by 'semiwrap create-imports wpimath.optimization wpimath._controls._controls.optimization'
22
from .._controls._controls.optimization import SimulatedAnnealing
33

44
__all__ = ["SimulatedAnnealing"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# autogenerated by 'robotpy-build create-imports wpimath.path wpimath._controls._controls.path'
1+
# autogenerated by 'semiwrap create-imports wpimath.path wpimath._controls._controls.path'
22
from .._controls._controls.path import TravelingSalesman
33

44
__all__ = ["TravelingSalesman"]

subprojects/robotpy-wpimath/wpimath/spline/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from . import _init__spline
22

3-
# autogenerated by 'robotpy-build create-imports wpimath.spline wpimath.spline._spline'
3+
# autogenerated by 'semiwrap create-imports wpimath.spline wpimath.spline._spline'
44
from ._spline import (
55
CubicHermiteSpline,
66
QuinticHermiteSpline,

subprojects/robotpy-wpimath/wpimath/system/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# autogenerated by 'robotpy-build create-imports wpimath.system wpimath._controls._controls.system'
1+
# autogenerated by 'semiwrap create-imports wpimath.system wpimath._controls._controls.system'
22
from .._controls._controls.system import (
33
LinearSystemLoop_1_1_1,
44
LinearSystemLoop_2_1_1,

0 commit comments

Comments
 (0)