final preparations for cube.hh removal
This commit is contained in:
parent
a6c3c645c5
commit
a7c477dc48
5 changed files with 5 additions and 3 deletions
|
@ -3,6 +3,8 @@
|
|||
#ifndef SHARED_COMMAND_HH
|
||||
#define SHARED_COMMAND_HH
|
||||
|
||||
#include "tools.hh"
|
||||
|
||||
enum { VAL_NULL = 0, VAL_INT, VAL_FLOAT, VAL_STR, VAL_ANY, VAL_CODE, VAL_MACRO, VAL_IDENT, VAL_CSTR, VAL_CANY, VAL_WORD, VAL_POP, VAL_COND };
|
||||
|
||||
enum
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#ifndef __CUBE_H__
|
||||
#define __CUBE_H__
|
||||
|
||||
#include "tools.hh"
|
||||
#include "geom.hh"
|
||||
#include "command.hh"
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "cube.hh"
|
||||
#include "geom.hh"
|
||||
|
||||
static inline double det2x2(double a, double b, double c, double d) { return a*d - b*c; }
|
||||
static inline double det3x3(double a1, double a2, double a3,
|
||||
|
|
|
@ -7,6 +7,7 @@ struct selinfo;
|
|||
struct VSlot;
|
||||
|
||||
#include "tools.hh"
|
||||
#include "geom.hh"
|
||||
|
||||
namespace entities
|
||||
{
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#define _TOOLS_H
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <cmath>
|
||||
|
||||
|
|
Loading…
Reference in a new issue