Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # wrap_255.py
- def wrap_255(n):
- period = 512
- n_mod = n % period
- return int(255 - abs(n_mod - 255))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement