#ifndef __SOLVESPACE_H #define __SOLVESPACE_H // Debugging functions #define oops() do { dbp("oops at line %d, file %s", __LINE__, __FILE__); \ exit(-1); } while(0) #ifndef min #define min(x, y) ((x) < (y) ? (x) : (y)) #endif #ifndef max #define max(x, y) ((x) > (y) ? (x) : (y)) #endif class Expr; void dbp(char *str, ...); void Error(char *str, ...); Expr *AllocExpr(void); void FreeAllExprs(void); #include #include #include #include #include // required for GL stuff #include #include #include "dsc.h" #include "sketch.h" #include "ui.h" #include "expr.h" // From the platform-specific code. void InvalidateGraphics(void); void InvalidateText(void); // Utility functions that are provided in the platform-independent code. void glxVertex3v(Vector u); void glxWriteText(char *str); void glxTranslatev(Vector u); void glxOntoCsys(Vector u, Vector v); #define arraylen(x) (sizeof((x))/sizeof((x)[0])) #define PI (3.1415926535897931) void MakeMatrix(double *mat, double a11, double a12, double a13, double a14, double a21, double a22, double a23, double a24, double a31, double a32, double a33, double a34, double a41, double a42, double a43, double a44); class SolveSpace { public: TextWindow TW; GraphicsWindow GW; IdList group; IdList request; IdList entity; IdList point; IdList param; inline Entity *GetEntity(hEntity h) { return entity.FindById(h); } inline Param *GetParam (hParam h) { return param. FindById(h); } hGroup activeGroup; void GenerateAll(void); void ForceReferences(void); void Init(void); void Solve(void); }; extern SolveSpace SS; #endif