22 lines
320 B
C
22 lines
320 B
C
/**
|
|
* \addtogroup fixedpoint
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @file fpmath_patterns.h
|
|
* @brief Public starting points for the fixed-point math based animations.
|
|
* @author Christian Kroll
|
|
*/
|
|
|
|
#ifndef FPMATH_PATTERNS_H_
|
|
#define FPMATH_PATTERNS_H_
|
|
|
|
void plasma(void);
|
|
|
|
void psychedelic(void);
|
|
|
|
#endif /* FPMATH_PATTERNS_H_ */
|
|
|
|
/*@}*/
|