Skip to content

Instantly share code, notes, and snippets.

@captnlarzuk
captnlarzuk / createCosCArray.sh
Created December 31, 2019 18:53
Bash script which generates C code array of unsigned trigonometry
#!/bin/bash
# This script generates a C code wchich creates
# an unsigned int array of pre calculated cos/sin...
# It's crappy, but you can tweak it.
export LC_NUMERIC="en_US.UTF-8" # use . instead of ,
# Increments between 0 ans 2pi
RESOLUTION=0.01
# Max value
MAX=1024