mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 04:21:51 +00:00
c1c77bd64a
This is for developing methods of implementing geometric algebra and eventually playing with it visually.
11 lines
218 B
C
11 lines
218 B
C
#ifndef __util_h
|
|
#define __util_h
|
|
|
|
void printf(string fmt, ...);
|
|
void traceon(void);
|
|
void traceoff(void);
|
|
int *binomial (int n);
|
|
int count_bits (unsigned v);
|
|
int count_flips (unsigned a, unsigned b);
|
|
|
|
#endif//__util_h
|