final preparations for cube.hh removal

master
Daniel Kolesa 2020-07-29 05:05:25 +02:00
parent a6c3c645c5
commit a7c477dc48
5 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -1,8 +1,6 @@
#ifndef __CUBE_H__
#define __CUBE_H__
#include "tools.hh"
#include "geom.hh"
#include "command.hh"
#endif

View File

@ -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,

View File

@ -7,6 +7,7 @@ struct selinfo;
struct VSlot;
#include "tools.hh"
#include "geom.hh"
namespace entities
{

View File

@ -4,6 +4,7 @@
#define _TOOLS_H
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>