2013-02-02 21:54:53 +01:00
|
|
|
/*
|
|
|
|
* vim: sw=2 ts=2 expandtab
|
|
|
|
*
|
|
|
|
* "THE PIZZA-WARE LICENSE" (derived from "THE BEER-WARE LICENCE"):
|
|
|
|
* Thomas Kolb <cfr34k@tkolb.de> wrote this file. As long as you retain this
|
|
|
|
* notice you can do whatever you want with this stuff. If we meet some day,
|
|
|
|
* and you think this stuff is worth it, you can buy me a pizza in return.
|
|
|
|
* - Thomas Kolb
|
|
|
|
*/
|
|
|
|
|
2012-09-03 18:50:11 +02:00
|
|
|
#ifndef LUT_H
|
|
|
|
#define LUT_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
value_type lookup_sin(int layer, int element);
|
|
|
|
value_type lookup_cos(int layer, int element);
|
|
|
|
|
|
|
|
#endif // LUT_H
|