14 lines
219 B
C
14 lines
219 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "Vectors.h"
|
|
#include "Matrices.h"
|
|
#include "geometry.h"
|
|
|
|
#define QUERY 0
|
|
#define ON 1
|
|
#define OFF 2
|
|
#define YES ON
|
|
#define NO OFF
|
|
|
|
#define Swap(x, y) { x -= y = (x += y) - y; } |