This website works better with JavaScript.
Explore
Help
Register
Sign In
sadmen
/
jyoung
mirror of
https://github.com/jyoung8607/openpilot.git
Watch
1
Star
0
Fork
You've already forked jyoung
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
open source driving agent
3
Commits
105
Branches
34
Tags
1.6 GiB
Tree:
0c863d5f80
jyoung
/
common
/
numpy_fast.py
3 lines
50 B
Raw
Normal View
History
Unescape
Escape
openpilot release old-commit-hash: e94a30bec07e719c5a7b037ca1f4db8312702cce
9 years ago
def
clip
(
x
,
lo
,
hi
)
:
return
max
(
lo
,
min
(
hi
,
x
)
)