2008-03-25 10:02:13 +00:00
|
|
|
#include "solvespace.h"
|
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
template IdList<Request,hRequest>;
|
|
|
|
template IdList<Entity,hEntity>;
|
|
|
|
template IdList<Point,hPoint>;
|
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
SolveSpace SS;
|
|
|
|
|
|
|
|
void SolveSpace::Init(void) {
|
|
|
|
TW.Init();
|
2008-03-27 09:53:51 +00:00
|
|
|
GW.Init();
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
req.Clear();
|
|
|
|
entity.Clear();
|
|
|
|
point.Clear();
|
|
|
|
param.Clear();
|
|
|
|
|
2008-03-26 09:18:12 +00:00
|
|
|
int i;
|
|
|
|
for(i = 0; i < 20; i++) {
|
|
|
|
TW.Printf("this is line number %d", i);
|
|
|
|
}
|
2008-03-25 10:02:13 +00:00
|
|
|
}
|
|
|
|
|